diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-13 22:54:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-13 22:54:44 +0000 |
commit | 0db07092a7aaeeaa0722799d9f533be3b782d362 (patch) | |
tree | d696da32347df0c488d1c0c8a5191e17c729f269 /lib/CodeGen/MachineFunction.cpp | |
parent | 653f7230ad73cc02e1dc432dc28f4c0ee36a4abd (diff) |
print stack object alignment in -print-machineinstr dumps
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21992 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | lib/CodeGen/MachineFunction.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index a93ebc88ec..aa3226bbf2 100644 --- a/lib/CodeGen/MachineFunction.cpp +++ b/lib/CodeGen/MachineFunction.cpp @@ -266,11 +266,13 @@ void MachineFrameInfo::print(const MachineFunction &MF, std::ostream &OS) const{ for (unsigned i = 0, e = Objects.size(); i != e; ++i) { const StackObject &SO = Objects[i]; - OS << " <fi #" << (int)(i-NumFixedObjects) << "> is "; + OS << " <fi #" << (int)(i-NumFixedObjects) << ">: "; if (SO.Size == 0) OS << "variable sized"; else - OS << SO.Size << " byte" << (SO.Size != 1 ? "s" : " "); + OS << "size is " << SO.Size << " byte" << (SO.Size != 1 ? "s," : ","); + OS << " alignment is " << SO.Alignment << " byte" + << (SO.Alignment != 1 ? "s," : ","); if (i < NumFixedObjects) OS << " fixed"; |