diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2008-11-11 17:56:53 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2008-11-11 17:56:53 +0000 |
commit | 6f28289aca5bf15feb49b95e73f80cf9af99cdb3 (patch) | |
tree | 71037f611a5ba7b910255fcfb6a419cf159d8ee7 /clang/lib/CodeGen/CGExprComplex.cpp | |
parent | 5499e89d06ba27f89dbffb028cbce72e3a3c95ed (diff) | |
download | bcm5719-llvm-6f28289aca5bf15feb49b95e73f80cf9af99cdb3.tar.gz bcm5719-llvm-6f28289aca5bf15feb49b95e73f80cf9af99cdb3.zip |
Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expressions, both of values and types.
llvm-svn: 59057
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 92226620269..b4ca6c0f57f 100644 --- a/clang/lib/CodeGen/CGExprComplex.cpp +++ b/clang/lib/CodeGen/CGExprComplex.cpp @@ -117,7 +117,7 @@ public: } ComplexPairTy VisitUnaryMinus (const UnaryOperator *E); ComplexPairTy VisitUnaryNot (const UnaryOperator *E); - // LNot,SizeOf,AlignOf,Real,Imag never return complex. + // LNot,Real,Imag never return complex. ComplexPairTy VisitUnaryExtension(const UnaryOperator *E) { return Visit(E->getSubExpr()); } |