Pretty straightforward replacement of "bytecode" by "bitcode"

performed on tools/ first, in order not to cause lethal damage


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37877 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Gabor Greif
2007-07-04 21:55:50 +00:00
parent e377d4d142
commit 8ff70c2635
10 changed files with 148 additions and 148 deletions

View File

@@ -139,7 +139,7 @@ Module *BugDriver::ExtractLoop(Module *M) {
if (NewM == 0) {
Module *Old = swapProgramIn(M);
std::cout << "*** Loop extraction failed: ";
EmitProgressBytecode("loopextraction", true);
EmitProgressBitcode("loopextraction", true);
std::cout << "*** Sorry. :( Please report a bug!\n";
swapProgramIn(Old);
return 0;
@@ -361,7 +361,7 @@ Module *BugDriver::ExtractMappedBlocksFromModule(const
if (Ret == 0) {
std::cout << "*** Basic Block extraction failed, please report a bug!\n";
M = swapProgramIn(M);
EmitProgressBytecode("basicblockextractfail", true);
EmitProgressBitcode("basicblockextractfail", true);
swapProgramIn(M);
}
return Ret;