aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2010-09-12 22:36:13 +0000
committerDale Johannesen <dalej@apple.com>2010-09-12 22:36:13 +0000
commite37c9e59b4cb5b9b5866496a93ebbb4eda6d0620 (patch)
tree2edf62047b5c5c07ccdd2e49c468400db6a4f2b2
parent86e05af491ee3f45bd51236ccb831eddad7cc316 (diff)
Fix comment typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113728 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Type.h b/include/llvm/Type.h
index dae08c03f4..e6a05721c7 100644
--- a/include/llvm/Type.h
+++ b/include/llvm/Type.h
@@ -213,7 +213,7 @@ public:
bool isFloatingPointTy() const { return ID == FloatTyID || ID == DoubleTyID ||
ID == X86_FP80TyID || ID == FP128TyID || ID == PPC_FP128TyID; }
- /// isPPC_FP128Ty - Return true if this is X86 MMX.
+ /// isX86_MMXTy - Return true if this is X86 MMX.
bool isX86_MMXTy() const { return ID == X86_MMXTyID; }
/// isFPOrFPVectorTy - Return true if this is a FP type or a vector of FP.