From e37c9e59b4cb5b9b5866496a93ebbb4eda6d0620 Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Sun, 12 Sep 2010 22:36:13 +0000 Subject: [PATCH] Fix comment typo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113728 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Type.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Type.h b/include/llvm/Type.h index dae08c03f46..e6a05721c7b 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.