implement codegen support for sizeof/alignof


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40009 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h
index 67cefc2..db92ee2 100644
--- a/CodeGen/CodeGenFunction.h
+++ b/CodeGen/CodeGenFunction.h
@@ -340,7 +340,7 @@
   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.