[cfe-commits] r41418 - /cfe/trunk/CodeGen/CodeGenFunction.h

Chris Lattner sabre at nondot.org
Sat Aug 25 21:13:58 PDT 2007


Author: lattner
Date: Sat Aug 25 23:13:58 2007
New Revision: 41418

URL: http://llvm.org/viewvc/llvm-project?rev=41418&view=rev
Log:
remove a bunch of dead code


Modified:
    cfe/trunk/CodeGen/CodeGenFunction.h

Modified: cfe/trunk/CodeGen/CodeGenFunction.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/CodeGen/CodeGenFunction.h?rev=41418&r1=41417&r2=41418&view=diff

==============================================================================
--- cfe/trunk/CodeGen/CodeGenFunction.h (original)
+++ cfe/trunk/CodeGen/CodeGenFunction.h Sat Aug 25 23:13:58 2007
@@ -348,41 +348,6 @@
   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);
 
   //===--------------------------------------------------------------------===//





More information about the cfe-commits mailing list