aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineBasicBlock.cpp
diff options
context:
space:
mode:
authorOliver Stannard <oliver.stannard@arm.com>2023-07-13 14:25:10 +0100
committerOliver Stannard <oliver.stannard@arm.com>2023-07-13 14:25:39 +0100
commitaea8db8eb98d32b732207f6db9bdb402d404c012 (patch)
tree6b48ccd68a17412660cfe99996c6e444dde19c9f /llvm/lib/CodeGen/MachineBasicBlock.cpp
parentcfa2d0a3aa0beb5422107dc9943cb0eae6d93896 (diff)
downloadllvm-aea8db8eb98d32b732207f6db9bdb402d404c012.zip
llvm-aea8db8eb98d32b732207f6db9bdb402d404c012.tar.gz
llvm-aea8db8eb98d32b732207f6db9bdb402d404c012.tar.bz2
Revert "[CodeGen] Store SP adjustment in MachineBasicBlock. NFCI."
This reverts commit 58d1eaa3b6ce4f7285c51f83faff7a3ac374c746.
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineBasicBlock.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp
index 0ccca7e..23154449 100644
--- a/llvm/lib/CodeGen/MachineBasicBlock.cpp
+++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp
@@ -570,11 +570,6 @@ void MachineBasicBlock::printName(raw_ostream &os, unsigned printNameFlags,
os << "bb_id " << *getBBID();
hasAttributes = true;
}
- if (SPAdjustment != 0) {
- os << (hasAttributes ? ", " : " (");
- os << "sp-adjustment " << SPAdjustment;
- hasAttributes = true;
- }
}
if (hasAttributes)