aboutsummaryrefslogtreecommitdiff
path: root/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-07-11 23:43:46 +0000
committerChris Lattner <sabre@nondot.org>2007-07-11 23:43:46 +0000
commit572747983bf6bc9919a911a5995b564b56cb0fce (patch)
tree1f10c9511373bbd57feeb5ba3272781fea723376 /CodeGen/CodeGenFunction.h
parent1c2a65b8eb06c55d95d34226b6c1d8a46ad6b3a9 (diff)
implement codegen support for pre/post inc/dec.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39765 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen/CodeGenFunction.h')
-rw-r--r--CodeGen/CodeGenFunction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h
index acefedf3cc..fe570feb93 100644
--- a/CodeGen/CodeGenFunction.h
+++ b/CodeGen/CodeGenFunction.h
@@ -316,7 +316,7 @@ public:
// Unary Operators.
RValue EmitUnaryOperator(const UnaryOperator *E);
- // FIXME: pre/post inc/dec
+ RValue EmitUnaryIncDec (const UnaryOperator *E);
RValue EmitUnaryAddrOf (const UnaryOperator *E);
RValue EmitUnaryPlus (const UnaryOperator *E);
RValue EmitUnaryMinus (const UnaryOperator *E);