diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-01-26 18:02:34 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-01-26 18:02:34 +0000 |
| commit | 02fe8210217066f07578438b06370cdc8d3d8209 (patch) | |
| tree | d31364ef41c228d5366a20e30573392ed38bb178 /clang/lib/CodeGen/CGExprComplex.cpp | |
| parent | a7ff032643e9664dba72a8807864aef29c6f0857 (diff) | |
| download | llvm-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.cpp | 2 |
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); |
