aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2009-07-05 22:35:49 +0000
committerNick Lewycky <nicholas@mxc.ca>2009-07-05 22:35:49 +0000
commitdb882950f3bcf7f710843610e917988daeafffc2 (patch)
tree6fff21324386e359493304991d8f770f93f8da0e
parentcb9b9d52b42da0fd6f639a79f6096cf8cf509bf9 (diff)
There are five floating point types.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74806 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 e87ddb4e1d..d4f86f0b5c 100644
--- a/include/llvm/Type.h
+++ b/include/llvm/Type.h
@@ -191,7 +191,7 @@ public:
///
bool isIntOrIntVector() const;
- /// isFloatingPoint - Return true if this is one of the three floating point
+ /// isFloatingPoint - Return true if this is one of the five floating point
/// types
bool isFloatingPoint() const { return ID == FloatTyID || ID == DoubleTyID ||
ID == X86_FP80TyID || ID == FP128TyID || ID == PPC_FP128TyID; }