mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Fix a trivial but blatant bug
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13947 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
681692da43
commit
fd0f7b1131
@ -253,10 +253,10 @@ SelectionDAG::SelectionDAG(MachineFunction &f, const TargetMachine &tm,
|
||||
|
||||
switch (TM.getTargetData().getPointerSize()) {
|
||||
default: assert(0 && "Unknown pointer size!"); abort();
|
||||
case 8: PointerType = MVT::i8; break;
|
||||
case 16: PointerType = MVT::i16; break;
|
||||
case 32: PointerType = MVT::i32; break;
|
||||
case 64: PointerType = MVT::i64; break;
|
||||
case 1: PointerType = MVT::i8; break;
|
||||
case 2: PointerType = MVT::i16; break;
|
||||
case 3: PointerType = MVT::i32; break;
|
||||
case 4: PointerType = MVT::i64; break;
|
||||
}
|
||||
|
||||
// Create all of the machine basic blocks for the function... building the
|
||||
|
Loading…
x
Reference in New Issue
Block a user