mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-26 23:24:34 +00:00
rename indbr -> indirectbr to appease the residents of #llvm.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85351 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1132,9 +1132,9 @@ namespace {
|
||||
}
|
||||
break;
|
||||
}
|
||||
case Instruction::IndBr: {
|
||||
const IndBrInst *IBI = cast<IndBrInst>(I);
|
||||
Out << "IndBrInst *" << iName << " = IndBrInst::Create("
|
||||
case Instruction::IndirectBr: {
|
||||
const IndirectBrInst *IBI = cast<IndirectBrInst>(I);
|
||||
Out << "IndirectBrInst *" << iName << " = IndirectBrInst::Create("
|
||||
<< opNames[0] << ", " << IBI->getNumDestinations() << ");";
|
||||
nl(Out);
|
||||
for (unsigned i = 1; i != IBI->getNumOperands(); ++i) {
|
||||
|
Reference in New Issue
Block a user