| Index: src/IceTargetLoweringMIPS32.h
|
| diff --git a/src/IceTargetLoweringMIPS32.h b/src/IceTargetLoweringMIPS32.h
|
| index 52c09cf0da38214a4a31a19ed9cb03f9655c5ec0..1ae0b28ff7595bd63e1ebfa11bff381093e238bd 100644
|
| --- a/src/IceTargetLoweringMIPS32.h
|
| +++ b/src/IceTargetLoweringMIPS32.h
|
| @@ -52,8 +52,8 @@ public:
|
| return UsesFramePointer ? RegMIPS32::Reg_FP : RegMIPS32::Reg_SP;
|
| }
|
| size_t typeWidthInBytesOnStack(Type Ty) const override {
|
| - // Round up to the next multiple of 4 bytes. In particular, i1,
|
| - // i8, and i16 are rounded up to 4 bytes.
|
| + // Round up to the next multiple of 4 bytes. In particular, i1, i8, and i16
|
| + // are rounded up to 4 bytes.
|
| return (typeWidthInBytes(Ty) + 3) & ~3;
|
| }
|
|
|
|
|