diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-02-08 22:05:07 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-02-08 22:05:07 +0000 |
commit | bbd8322daaefa70ba1a282956df5f977e783524b (patch) | |
tree | ec1235e3c3f004e69ebc9b2840d79d2b4308193c /lib/CodeGen/MachineInstr.cpp | |
parent | ec646cfd07f1354364e0899561aabffef5b702fd (diff) |
Also print alignment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46895 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | lib/CodeGen/MachineInstr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index 6d4bc30150..5744ba87ee 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp @@ -647,7 +647,7 @@ void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const { if (MRO.isStore()) OS << "ST"; - OS << "(" << MRO.getSize() << ") ["; + OS << "(" << MRO.getSize() << "," << MRO.getAlignment() << ") ["; if (!V) OS << "<unknown>"; |