mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-05 12:31:46 +00:00
Fix a couple of mistaken switch case fall-throughs. Thanks to Bill
for spotting these! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60728 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
51d8b669f1
commit
55fdaec36a
@ -332,11 +332,13 @@ bool X86FastISel::X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall) {
|
|||||||
// Look past no-op inttoptrs.
|
// Look past no-op inttoptrs.
|
||||||
if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
|
if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
|
||||||
return X86SelectAddress(U->getOperand(0), AM, isCall);
|
return X86SelectAddress(U->getOperand(0), AM, isCall);
|
||||||
|
break;
|
||||||
|
|
||||||
case Instruction::PtrToInt:
|
case Instruction::PtrToInt:
|
||||||
// Look past no-op ptrtoints.
|
// Look past no-op ptrtoints.
|
||||||
if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
|
if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
|
||||||
return X86SelectAddress(U->getOperand(0), AM, isCall);
|
return X86SelectAddress(U->getOperand(0), AM, isCall);
|
||||||
|
break;
|
||||||
|
|
||||||
case Instruction::Alloca: {
|
case Instruction::Alloca: {
|
||||||
if (isCall) break;
|
if (isCall) break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user