aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGExprComplex.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-01-29 06:44:03 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-01-29 06:44:03 +0000
commit56f0d16c1159d8bc585f583cfc440298e6dbd330 (patch)
tree3897cd41319ef3ea9d050cc41e6b19826fa58ef3 /lib/CodeGen/CGExprComplex.cpp
parent4087e24f73d05d96ac2d259679751d054d3ddfbc (diff)
Fix typo
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63281 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprComplex.cpp')
-rw-r--r--lib/CodeGen/CGExprComplex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGExprComplex.cpp b/lib/CodeGen/CGExprComplex.cpp
index ab6dc31a93..73fceedee5 100644
--- a/lib/CodeGen/CGExprComplex.cpp
+++ b/lib/CodeGen/CGExprComplex.cpp
@@ -269,7 +269,7 @@ ComplexPairTy ComplexExprEmitter::EmitComplexToComplexCast(ComplexPairTy Val,
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);