[cfe-commits] r63281 - /cfe/trunk/lib/CodeGen/CGExprComplex.cpp
Daniel Dunbar
daniel at zuster.org
Wed Jan 28 22:44:03 PST 2009
Author: ddunbar
Date: Thu Jan 29 00:44:03 2009
New Revision: 63281
URL: http://llvm.org/viewvc/llvm-project?rev=63281&view=rev
Log:
Fix typo
Modified:
cfe/trunk/lib/CodeGen/CGExprComplex.cpp
Modified: cfe/trunk/lib/CodeGen/CGExprComplex.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGExprComplex.cpp?rev=63281&r1=63280&r2=63281&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGExprComplex.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGExprComplex.cpp Thu Jan 29 00:44:03 2009
@@ -269,7 +269,7 @@
SrcType = SrcType->getAsComplexType()->getElementType();
DestType = DestType->getAsComplexType()->getElementType();
- // C99 6.3.1.6: When a value of complextype is converted to another
+ // C99 6.3.1.6: When a value of complex type is converted to another
// complex type, both the real and imaginary parts follow the conversion
// rules for the corresponding real types.
Val.first = CGF.EmitScalarConversion(Val.first, SrcType, DestType);
More information about the cfe-commits
mailing list