aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/InstrTypes.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-05-28 21:22:45 +0000
committerDan Gohman <gohman@apple.com>2010-05-28 21:22:45 +0000
commitc6e02e405696af313bdfe27cfe7930a2cba9711b (patch)
tree88020036339423c5b0e36c8c4b19f3809a42f218 /include/llvm/InstrTypes.h
parent31cc9655b681c1b9b0a199131588377ce578ec0d (diff)
downloadexternal_llvm-c6e02e405696af313bdfe27cfe7930a2cba9711b.zip
external_llvm-c6e02e405696af313bdfe27cfe7930a2cba9711b.tar.gz
external_llvm-c6e02e405696af313bdfe27cfe7930a2cba9711b.tar.bz2
Fix a comment; vectors are not a special case here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105006 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/InstrTypes.h')
-rw-r--r--include/llvm/InstrTypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/InstrTypes.h b/include/llvm/InstrTypes.h
index 49cdd6a..e359329 100644
--- a/include/llvm/InstrTypes.h
+++ b/include/llvm/InstrTypes.h
@@ -612,7 +612,7 @@ public:
/// A lossless cast is one that does not alter the basic value. It implies
/// a no-op cast but is more stringent, preventing things like int->float,
- /// long->double, int->ptr, or vector->anything.
+ /// long->double, or int->ptr.
/// @returns true iff the cast is lossless.
/// @brief Determine if this is a lossless cast.
bool isLosslessCast() const;