optimize out some ifdefs.

llvm-svn: 85453
This commit is contained in:
Chris Lattner 2009-10-29 00:22:00 +00:00
parent 7c1cc70a90
commit edc56ef41c
2 changed files with 0 additions and 8 deletions

View File

@ -58,12 +58,8 @@ struct EvalInfo {
static bool EvaluateLValue(const Expr *E, APValue &Result, EvalInfo &Info);
static bool EvaluatePointer(const Expr *E, APValue &Result, EvalInfo &Info);
static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info);
#ifndef USEINDIRECTBRANCH
static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result, EvalInfo &Info);
#else
static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result,
EvalInfo &Info);
#endif
static bool EvaluateFloat(const Expr *E, APFloat &Result, EvalInfo &Info);
static bool EvaluateComplex(const Expr *E, APValue &Result, EvalInfo &Info);

View File

@ -183,11 +183,7 @@ public:
void PopConditionalTempDestruction();
private:
#ifndef USEINDIRECTBRANCH
CGDebugInfo* DebugInfo;
#else
CGDebugInfo *DebugInfo;
#endif
#ifndef USEINDIRECTBRANCH
/// LabelIDs - Track arbitrary ids assigned to labels for use in implementing