Fix a trivial but blatant bug
authorChris Lattner <sabre@nondot.org>
Wed, 2 Jun 2004 03:57:43 +0000 (03:57 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 2 Jun 2004 03:57:43 +0000 (03:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13947 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/DAGBuilder.cpp

index fd4e7a90c7dc03092a3b81e11a64c83914d89b26..d1d3c562218488076a7376dcf8c97fda1ff368b4 100644 (file)
@@ -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