aboutsummaryrefslogtreecommitdiff
path: root/tools/bugpoint/ExtractFunction.cpp
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2007-07-04 21:55:50 +0000
committerGabor Greif <ggreif@gmail.com>2007-07-04 21:55:50 +0000
commit8ff70c2635bfd4e02c0140a5dc9ca909fffba35a (patch)
tree1a5d1778b445da7fe5b42dd4e2eb585fe94a5fba /tools/bugpoint/ExtractFunction.cpp
parente377d4d142d7e2ec9266435087c99ffc43f394aa (diff)
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
Diffstat (limited to 'tools/bugpoint/ExtractFunction.cpp')
-rw-r--r--tools/bugpoint/ExtractFunction.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bugpoint/ExtractFunction.cpp b/tools/bugpoint/ExtractFunction.cpp
index 85da929428..31f7fa4ca7 100644
--- a/tools/bugpoint/ExtractFunction.cpp
+++ b/tools/bugpoint/ExtractFunction.cpp
@@ -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;