Typo
authorEvan Cheng <evan.cheng@apple.com>
Wed, 17 May 2006 20:55:51 +0000 (20:55 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Wed, 17 May 2006 20:55:51 +0000 (20:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28366 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/CodeGenTarget.cpp

index 6fb97c550485e1cfff09d0105576b0428fb1470d..10ec6fec13e522ebba000a38fdaa9e29ba808eae 100644 (file)
@@ -58,7 +58,7 @@ std::string llvm::getName(MVT::ValueType T) {
   case MVT::v2f32: return "v2f32";
   case MVT::v4f32: return "v4f32";
   case MVT::v2f64: return "v2f64";
-  case MVT::iPTR:  return "TLI.getPointetTy()";
+  case MVT::iPTR:  return "TLI.getPointerTy()";
   default: assert(0 && "ILLEGAL VALUE TYPE!"); return "";
   }
 }
@@ -88,7 +88,7 @@ std::string llvm::getEnumName(MVT::ValueType T) {
   case MVT::v2f32: return "MVT::v2f32";
   case MVT::v4f32: return "MVT::v4f32";
   case MVT::v2f64: return "MVT::v2f64";
-  case MVT::iPTR:  return "TLI.getPointetTy()";
+  case MVT::iPTR:  return "TLI.getPointerTy()";
   default: assert(0 && "ILLEGAL VALUE TYPE!"); return "";
   }
 }