diff options
author | Chris Lattner <sabre@nondot.org> | 2007-07-18 18:12:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-07-18 18:12:07 +0000 |
commit | 5e3fbe503a28c790d648091653dc21eeca64ca07 (patch) | |
tree | af607709b0a1a662ed1b416b52c381031cb23c8b /CodeGen/CodeGenFunction.h | |
parent | 73322924127c873c13101b705dd823f5539ffa5f (diff) |
implement codegen support for sizeof/alignof
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40009 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen/CodeGenFunction.h')
-rw-r--r-- | CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h index 67cefc2714..db92ee29b9 100644 --- a/CodeGen/CodeGenFunction.h +++ b/CodeGen/CodeGenFunction.h @@ -340,7 +340,7 @@ public: RValue EmitUnaryMinus (const UnaryOperator *E); RValue EmitUnaryNot (const UnaryOperator *E); RValue EmitUnaryLNot (const UnaryOperator *E); - // FIXME: SIZEOF/ALIGNOF(expr). + RValue EmitSizeAlignOf (QualType TypeToSize, QualType RetType,bool isSizeOf); // FIXME: real/imag // Binary Operators. |