Author: ddunbar
Date: Mon Jan 26 12:02:34 2009
New Revision: 63016

URL: http://llvm.org/viewvc/llvm-project?rev=63016&view=rev
Log:
Comment fix.

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=63016&r1=63015&r2=63016&view=diff

==============================================================================
--- cfe/trunk/lib/CodeGen/CGExprComplex.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGExprComplex.cpp Mon Jan 26 12:02:34 2009
@@ -270,7 +270,7 @@
   DestType = DestType->getAsComplexType()->getElementType();
 
   // C99 6.3.1.6: When a value of complextype is converted to another
-  // complex type, both the real and imaginary parts followthe conversion
+  // 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);
   Val.second = CGF.EmitScalarConversion(Val.second, SrcType, DestType);


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to