Index: src/IceTargetLoweringX8632.h |
diff --git a/src/IceTargetLoweringX8632.h b/src/IceTargetLoweringX8632.h |
index 6d209dc8f4c72d179953ef8d9a0c83adea4b9cce..7516d5b8991a5a5848d47af9f224a7ce56c04daa 100644 |
--- a/src/IceTargetLoweringX8632.h |
+++ b/src/IceTargetLoweringX8632.h |
@@ -40,7 +40,7 @@ public: |
virtual SizeT getFrameOrStackReg() const { |
return IsEbpBasedFrame ? Reg_ebp : Reg_esp; |
} |
- virtual size_t typeWidthInBytesOnStack(Type Ty) { |
+ virtual size_t typeWidthInBytesOnStack(Type Ty) const { |
// 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; |
@@ -125,6 +125,8 @@ protected: |
void scalarizeArithmetic(InstArithmetic::OpKind K, Variable *Dest, |
Operand *Src0, Operand *Src1); |
+ void sortByAlignment(VarList &Dest, const VarList &Source) const; |
+ |
// Operand legalization helpers. To deal with address mode |
// constraints, the helpers will create a new Operand and emit |
// instructions that guarantee that the Operand kind is one of those |