[llvm-commits] [124440] cleanup comments and spacing
clattner at apple.com
clattner at apple.com
Thu Mar 1 23:26:01 PST 2007
Revision: 124440
Author: clattner
Date: 2007-03-01 23:25:59 -0800 (Thu, 01 Mar 2007)
Log Message:
-----------
cleanup comments and spacing
Modified Paths:
--------------
apple-local/branches/llvm/gcc/llvm-internal.h
Modified: apple-local/branches/llvm/gcc/llvm-internal.h
===================================================================
--- apple-local/branches/llvm/gcc/llvm-internal.h 2007-03-02 06:49:42 UTC (rev 124439)
+++ apple-local/branches/llvm/gcc/llvm-internal.h 2007-03-02 07:25:59 UTC (rev 124440)
@@ -341,20 +341,20 @@
/// of the types involved. This is an inferred cast.
Value *CastToAnyType (Value *V, bool VSigned, const Type* Ty, bool TySigned);
- /// CastToUIntTYpe - Cast the specified value to the specified type assuming
+ /// CastToUIntType - Cast the specified value to the specified type assuming
/// that V's type and Ty are integral types. This arbitrates between BitCast,
/// Trunc and ZExt.
Value *CastToUIntType(Value *V, const Type* Ty);
- /// CastToSIntTYpe - Cast the specified value to the specified type assuming
+ /// CastToSIntType - Cast the specified value to the specified type assuming
/// that V's type and Ty are integral types. This arbitrates between BitCast,
/// Trunc and SExt.
- Value *CastToSIntType (Value *V, const Type* Ty);
+ Value *CastToSIntType(Value *V, const Type* Ty);
- /// CastToFPTYpe - Cast the specified value to the specified type assuming
+ /// CastToFPType - Cast the specified value to the specified type assuming
/// that V's type and Ty are floating point types. This arbitrates between
/// BitCast, FPTrunc and FPExt.
- Value *CastToFPType (Value *V, const Type* Ty);
+ Value *CastToFPType(Value *V, const Type* Ty);
/// NOOPCastToType - Insert a BitCast from V to Ty if needed. This is just a
/// convenience function for CastToType(Instruction::BitCast, V, Ty);
More information about the llvm-commits
mailing list