aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CGExprComplex.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-01-26 18:02:34 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-01-26 18:02:34 +0000
commit02fe8210217066f07578438b06370cdc8d3d8209 (patch)
treed31364ef41c228d5366a20e30573392ed38bb178 /clang/lib/CodeGen/CGExprComplex.cpp
parenta7ff032643e9664dba72a8807864aef29c6f0857 (diff)
downloadllvm-02fe8210217066f07578438b06370cdc8d3d8209.zip
llvm-02fe8210217066f07578438b06370cdc8d3d8209.tar.gz
llvm-02fe8210217066f07578438b06370cdc8d3d8209.tar.bz2
Comment fix.
llvm-svn: 63016
Diffstat (limited to 'clang/lib/CodeGen/CGExprComplex.cpp')
-rw-r--r--clang/lib/CodeGen/CGExprComplex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGExprComplex.cpp b/clang/lib/CodeGen/CGExprComplex.cpp
index f9685d4..ab6dc31 100644
--- a/clang/lib/CodeGen/CGExprComplex.cpp
+++ b/clang/lib/CodeGen/CGExprComplex.cpp
@@ -270,7 +270,7 @@ ComplexPairTy ComplexExprEmitter::EmitComplexToComplexCast(ComplexPairTy Val,
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);