summaryrefslogtreecommitdiffstats
path: root/llvm/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
commit0e535c3c8e9e336c52cbad3712368701b94eaebb (patch)
tree0c6ede8cddbd3775e5b3f301c1b80a183500ba45 /llvm/tools/bugpoint/ExtractFunction.cpp
parent3d7008cd49b64ba49f1bf15f09e31c526fc27604 (diff)
downloadbcm5719-llvm-0e535c3c8e9e336c52cbad3712368701b94eaebb.tar.gz
bcm5719-llvm-0e535c3c8e9e336c52cbad3712368701b94eaebb.zip
Pretty straightforward replacement of "bytecode" by "bitcode"
performed on tools/ first, in order not to cause lethal damage llvm-svn: 37877
Diffstat (limited to 'llvm/tools/bugpoint/ExtractFunction.cpp')
-rw-r--r--llvm/tools/bugpoint/ExtractFunction.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/bugpoint/ExtractFunction.cpp b/llvm/tools/bugpoint/ExtractFunction.cpp
index 85da9294285..31f7fa4ca7d 100644
--- a/llvm/tools/bugpoint/ExtractFunction.cpp
+++ b/llvm/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;
OpenPOWER on IntegriCloud