diff options
author | Gabor Greif <ggreif@gmail.com> | 2007-07-05 17:07:56 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2007-07-05 17:07:56 +0000 |
commit | e16561cd5d459d4f1240431f4b564358024467f4 (patch) | |
tree | 42db314b3407bf11c48dabcba1d040387bc3eadf /llvm/tools/llvm-as | |
parent | 5892cfd2636b89e66f59ff5a3829515463d302d5 (diff) | |
download | bcm5719-llvm-e16561cd5d459d4f1240431f4b564358024467f4.tar.gz bcm5719-llvm-e16561cd5d459d4f1240431f4b564358024467f4.zip |
Here is the bulk of the sanitizing.
Almost all occurrences of "bytecode" in the sources have been eliminated.
llvm-svn: 37913
Diffstat (limited to 'llvm/tools/llvm-as')
-rw-r--r-- | llvm/tools/llvm-as/llvm-as.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-as/llvm-as.cpp b/llvm/tools/llvm-as/llvm-as.cpp index e4c7344776b..41b6846fe1c 100644 --- a/llvm/tools/llvm-as/llvm-as.cpp +++ b/llvm/tools/llvm-as/llvm-as.cpp @@ -125,7 +125,7 @@ int main(int argc, char **argv) { return 1; } - if (Force || !CheckBytecodeOutputToConsole(Out,true)) + if (Force || !CheckBitcodeOutputToConsole(Out,true)) WriteBitcodeToFile(M.get(), *Out); } catch (const std::string& msg) { cerr << argv[0] << ": " << msg << "\n"; |