| Index: src/IceTargetLoweringARM32.h
|
| diff --git a/src/IceTargetLoweringARM32.h b/src/IceTargetLoweringARM32.h
|
| index 1fa3ce24285db490a96f5d38da027095531024e8..473a45f4da465ab7e63aa869c1c2aaf0d4638443 100644
|
| --- a/src/IceTargetLoweringARM32.h
|
| +++ b/src/IceTargetLoweringARM32.h
|
| @@ -179,6 +179,9 @@ protected:
|
| void _br(CfgNode *Target) {
|
| Context.insert(InstARM32Br::create(Func, Target));
|
| }
|
| + void _br(CfgNode *Target, CondARM32::Cond Condition) {
|
| + Context.insert(InstARM32Br::create(Func, Target, Condition));
|
| + }
|
| void _cmp(Variable *Src0, Operand *Src1,
|
| CondARM32::Cond Pred = CondARM32::AL) {
|
| Context.insert(InstARM32Cmp::create(Func, Src0, Src1, Pred));
|
|
|