| Index: src/IceTargetLowering.h
|
| diff --git a/src/IceTargetLowering.h b/src/IceTargetLowering.h
|
| index 49108fa843787d49c0d220b758f9ddf51458cb2a..17d785e421f9e2a777fd80daaede5738073fccae 100644
|
| --- a/src/IceTargetLowering.h
|
| +++ b/src/IceTargetLowering.h
|
| @@ -164,9 +164,7 @@ public:
|
| // Returns true if this function calls a function that has the
|
| // "returns twice" attribute.
|
| bool callsReturnsTwice() const { return CallsReturnsTwice; }
|
| - void setCallsReturnsTwice(bool RetTwice) {
|
| - CallsReturnsTwice = RetTwice;
|
| - }
|
| + void setCallsReturnsTwice(bool RetTwice) { CallsReturnsTwice = RetTwice; }
|
| int32_t getStackAdjustment() const { return StackAdjustment; }
|
| void updateStackAdjustment(int32_t Offset) { StackAdjustment += Offset; }
|
| void resetStackAdjustment() { StackAdjustment = 0; }
|
|
|