diff options
author | Chris Lattner <sabre@nondot.org> | 2010-11-29 23:29:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-11-29 23:29:54 +0000 |
commit | 6f3a90b549612b1352037edbef832dd2559102fe (patch) | |
tree | a1054ec3b22378938dd5e585447686fad171d412 /llvm/lib/Bitcode/Writer/BitcodeWriter.cpp | |
parent | e1802eefac86fe57d8b4583ea32413f404068598 (diff) | |
download | bcm5719-llvm-6f3a90b549612b1352037edbef832dd2559102fe.tar.gz bcm5719-llvm-6f3a90b549612b1352037edbef832dd2559102fe.zip |
Generalize the darwin wrapper hack to work with generic macho triples as well as darwin ones.
llvm-svn: 120346
Diffstat (limited to 'llvm/lib/Bitcode/Writer/BitcodeWriter.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Writer/BitcodeWriter.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp index a1f5b38a513..c75dfcfdfc6 100644 --- a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp +++ b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp @@ -1642,9 +1642,12 @@ void llvm::WriteBitcodeToFile(const Module *M, raw_ostream &Out) { /// WriteBitcodeToStream - Write the specified module to the specified output /// stream. void llvm::WriteBitcodeToStream(const Module *M, BitstreamWriter &Stream) { - // If this is darwin, emit a file header and trailer if needed. - bool isDarwin = M->getTargetTriple().find("-darwin") != std::string::npos; - if (isDarwin) + // If this is darwin or another generic macho target, emit a file header and + // trailer if needed. + bool isMacho = + M->getTargetTriple().find("-darwin") != std::string::npos || + M->getTargetTriple().find("-macho") != std::string::npos; + if (isMacho) EmitDarwinBCHeader(Stream, M->getTargetTriple()); // Emit the file header. @@ -1658,6 +1661,6 @@ void llvm::WriteBitcodeToStream(const Module *M, BitstreamWriter &Stream) { // Emit the module. WriteModule(M, Stream); - if (isDarwin) + if (isMacho) EmitDarwinBCTrailer(Stream, Stream.getBuffer().size()); } |