mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user