Encode the total stack if there isn't a frame.
authorBill Wendling <isanbard@gmail.com>
Tue, 6 Dec 2011 21:34:01 +0000 (21:34 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 6 Dec 2011 21:34:01 +0000 (21:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145969 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86FrameLowering.cpp

index 5bf8132db29d66b8db1824360bab0fcd3efa980e..6e2b3df7a4a9b31d6cd20c74abfa56f5e8261e2c 100644 (file)
@@ -564,12 +564,13 @@ uint32_t X86FrameLowering::getCompactUnwindEncoding(MachineFunction &MF) const {
     CompactUnwindEncoding |= (StackAdjust & 0xFF) << 16;
     CompactUnwindEncoding |= RegEnc & 0x7FFF;
   } else {
-    if ((StackSize & 0xFF) == StackSize) {
+    uint32_t TotalStackSize = StackAdjust + StackSize;
+    if ((TotalStackSize & 0xFF) == TotalStackSize) {
       // Frameless stack with a small stack size.
       CompactUnwindEncoding |= 0x02000000;
 
       // Encode the stack size.
-      CompactUnwindEncoding |= (StackSize & 0xFF) << 16;
+      CompactUnwindEncoding |= (TotalStackSize & 0xFF) << 16;
     } else {
       if ((StackAdjust & 0x7) != StackAdjust)
         // The extra stack adjustments are too big for us to handle.