[llvm] r182979 - Fix wrong comment. Null is not acceptable.
Matt Arsenault
Matthew.Arsenault at amd.com
Thu May 30 18:40:30 PDT 2013
Author: arsenm
Date: Thu May 30 20:40:30 2013
New Revision: 182979
URL: http://llvm.org/viewvc/llvm-project?rev=182979&view=rev
Log:
Fix wrong comment. Null is not acceptable.
Modified:
llvm/trunk/include/llvm/IR/InstrTypes.h
Modified: llvm/trunk/include/llvm/IR/InstrTypes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/InstrTypes.h?rev=182979&r1=182978&r2=182979&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/InstrTypes.h (original)
+++ llvm/trunk/include/llvm/IR/InstrTypes.h Thu May 30 20:40:30 2013
@@ -568,7 +568,7 @@ public:
Instruction::CastOps Opcode, ///< Opcode of cast
Type *SrcTy, ///< SrcTy of cast
Type *DstTy, ///< DstTy of cast
- Type *IntPtrTy ///< Integer type corresponding to Ptr types, or null
+ Type *IntPtrTy ///< Integer type corresponding to Ptr types
);
/// @brief Determine if this cast is a no-op cast.
More information about the llvm-commits
mailing list