[llvm-commits] CVS: llvm/utils/TableGen/CodeGenTarget.cpp
Evan Cheng
evan.cheng at apple.com
Wed May 17 13:56:03 PDT 2006
Changes in directory llvm/utils/TableGen:
CodeGenTarget.cpp updated: 1.65 -> 1.66
---
Log message:
Typo
---
Diffs of the changes: (+2 -2)
CodeGenTarget.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/utils/TableGen/CodeGenTarget.cpp
diff -u llvm/utils/TableGen/CodeGenTarget.cpp:1.65 llvm/utils/TableGen/CodeGenTarget.cpp:1.66
--- llvm/utils/TableGen/CodeGenTarget.cpp:1.65 Wed May 17 15:37:59 2006
+++ llvm/utils/TableGen/CodeGenTarget.cpp Wed May 17 15:55:51 2006
@@ -58,7 +58,7 @@
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 @@
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 "";
}
}
More information about the llvm-commits
mailing list