aboutsummaryrefslogtreecommitdiff
path: root/lib/Bitcode/Writer/BitWriter.cpp
diff options
context:
space:
mode:
authorJoe Abbey <jabbey@arxan.com>2012-11-25 15:23:39 +0000
committerJoe Abbey <jabbey@arxan.com>2012-11-25 15:23:39 +0000
commit170a15e98dc6900df1ae40d03c5f0622d792fb45 (patch)
tree6cc9986932a67d55d3bf0c4523e15785d7a725e7 /lib/Bitcode/Writer/BitWriter.cpp
parentf4f14f68f6078ea6681ee27b5bf42719d7db3441 (diff)
Code Custodian:
- Widespread trailing space removal - A dash of OCD spacing to block align enums - joined a line that probably needed 80 cols a while back git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168566 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Writer/BitWriter.cpp')
-rw-r--r--lib/Bitcode/Writer/BitWriter.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/Bitcode/Writer/BitWriter.cpp b/lib/Bitcode/Writer/BitWriter.cpp
index 4288422463..9f51c35ad9 100644
--- a/lib/Bitcode/Writer/BitWriter.cpp
+++ b/lib/Bitcode/Writer/BitWriter.cpp
@@ -17,12 +17,11 @@ using namespace llvm;
int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) {
std::string ErrorInfo;
- raw_fd_ostream OS(Path, ErrorInfo,
- raw_fd_ostream::F_Binary);
-
+ raw_fd_ostream OS(Path, ErrorInfo, raw_fd_ostream::F_Binary);
+
if (!ErrorInfo.empty())
return -1;
-
+
WriteBitcodeToFile(unwrap(M), OS);
return 0;
}
@@ -30,7 +29,7 @@ int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) {
int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
int Unbuffered) {
raw_fd_ostream OS(FD, ShouldClose, Unbuffered);
-
+
WriteBitcodeToFile(unwrap(M), OS);
return 0;
}