| Index: src/IceTargetLoweringX8632.h
|
| diff --git a/src/IceTargetLoweringX8632.h b/src/IceTargetLoweringX8632.h
|
| index eb3cb705e24baefeb312f96394933d5b6fdf15eb..626cf435ee50ab0b1ff385b6d7aa5b00d009f63d 100644
|
| --- a/src/IceTargetLoweringX8632.h
|
| +++ b/src/IceTargetLoweringX8632.h
|
| @@ -383,8 +383,8 @@ protected:
|
| void _psub(Variable *Dest, Operand *Src0) {
|
| Context.insert(InstX8632Psub::create(Func, Dest, Src0));
|
| }
|
| - void _push(Operand *Src0, bool SuppressStackAdjustment = false) {
|
| - Context.insert(InstX8632Push::create(Func, Src0, SuppressStackAdjustment));
|
| + void _push(Variable *Src0) {
|
| + Context.insert(InstX8632Push::create(Func, Src0));
|
| }
|
| void _pxor(Variable *Dest, Operand *Src0) {
|
| Context.insert(InstX8632Pxor::create(Func, Dest, Src0));
|
|
|