aboutsummaryrefslogtreecommitdiff
path: root/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-08-26 04:13:58 +0000
committerChris Lattner <sabre@nondot.org>2007-08-26 04:13:58 +0000
commit11e6616c4109d7e20c9c57f885e656fbbb06cf41 (patch)
tree83e1fe41239f06b9d13c84e9de1d1322d721894b /CodeGen
parentaf458c9f658335bdea482395ff4a25c75935e129 (diff)
remove a bunch of dead code
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41418 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen')
-rw-r--r--CodeGen/CodeGenFunction.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h
index 0975bd975c..85b6c6318f 100644
--- a/CodeGen/CodeGenFunction.h
+++ b/CodeGen/CodeGenFunction.h
@@ -348,41 +348,6 @@ public:
RValue EmitCallExpr(const CallExpr *E);
RValue EmitBuiltinExpr(unsigned builtinID, const CallExpr *E);
-#if 0
- RValue EmitExpr(const Expr *E);
-
- // Binary Operators.
- RValue EmitBinaryOperator(const BinaryOperator *E);
- RValue EmitBinaryMul(const BinaryOperator *E);
- RValue EmitBinaryDiv(const BinaryOperator *E);
- RValue EmitBinaryRem(const BinaryOperator *E);
- RValue EmitMul(RValue LHS, RValue RHS, QualType EltTy);
- RValue EmitDiv(RValue LHS, RValue RHS, QualType EltTy);
- RValue EmitRem(RValue LHS, RValue RHS, QualType EltTy);
- RValue EmitAdd(RValue LHS, RValue RHS, QualType EltTy);
- RValue EmitPointerAdd(RValue LHS, QualType LHSTy,
- RValue RHS, QualType RHSTy, QualType EltTy);
- RValue EmitSub(RValue LHS, RValue RHS, QualType EltTy);
- RValue EmitPointerSub(RValue LHS, QualType LHSTy,
- RValue RHS, QualType RHSTy, QualType EltTy);
- RValue EmitShl(RValue LHS, RValue RHS, QualType ResTy);
- RValue EmitShr(RValue LHS, RValue RHS, QualType ResTy);
- RValue EmitBinaryCompare(const BinaryOperator *E, unsigned UICmpOpc,
- unsigned SICmpOpc, unsigned FCmpOpc);
- RValue EmitAnd(RValue LHS, RValue RHS, QualType EltTy);
- RValue EmitOr (RValue LHS, RValue RHS, QualType EltTy);
- RValue EmitXor(RValue LHS, RValue RHS, QualType EltTy);
- RValue EmitBinaryLAnd(const BinaryOperator *E);
- RValue EmitBinaryLOr(const BinaryOperator *E);
-
- RValue EmitBinaryAssign(const BinaryOperator *E);
- RValue EmitBinaryComma(const BinaryOperator *E);
-
- // Conditional Operator.
- RValue EmitConditionalOperator(const ConditionalOperator *E);
- RValue EmitChooseExpr(const ChooseExpr *E);
-#endif
-
llvm::Value *EmitObjCStringLiteral(const ObjCStringLiteral *E);
//===--------------------------------------------------------------------===//