[llvm-commits] [llvm] r105006 - /llvm/trunk/include/llvm/InstrTypes.h

Dan Gohman gohman at apple.com
Fri May 28 14:22:45 PDT 2010


Author: djg
Date: Fri May 28 16:22:45 2010
New Revision: 105006

URL: http://llvm.org/viewvc/llvm-project?rev=105006&view=rev
Log:
Fix a comment; vectors are not a special case here.

Modified:
    llvm/trunk/include/llvm/InstrTypes.h

Modified: llvm/trunk/include/llvm/InstrTypes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/InstrTypes.h?rev=105006&r1=105005&r2=105006&view=diff
==============================================================================
--- llvm/trunk/include/llvm/InstrTypes.h (original)
+++ llvm/trunk/include/llvm/InstrTypes.h Fri May 28 16:22:45 2010
@@ -612,7 +612,7 @@
 
   /// 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;





More information about the llvm-commits mailing list