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/lib/VMCore/PassManager.cpp | |
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/lib/VMCore/PassManager.cpp')
-rw-r--r-- | llvm/lib/VMCore/PassManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/PassManager.cpp b/llvm/lib/VMCore/PassManager.cpp index f257a07efb0..23e45c0b958 100644 --- a/llvm/lib/VMCore/PassManager.cpp +++ b/llvm/lib/VMCore/PassManager.cpp @@ -1037,7 +1037,7 @@ void FunctionPassManager::add(Pass *P) { bool FunctionPassManager::run(Function &F) { std::string errstr; if (MP->materializeFunction(&F, &errstr)) { - cerr << "Error reading bytecode file: " << errstr << "\n"; + cerr << "Error reading bitcode file: " << errstr << "\n"; abort(); } return FPM->run(F); |