forked from OSchip/llvm-project
parent
7c1cc70a90
commit
edc56ef41c
|
@ -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);
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue