From: Evan Cheng Date: Fri, 8 Feb 2008 22:05:07 +0000 (+0000) Subject: Also print alignment. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=bbd8322daaefa70ba1a282956df5f977e783524b;p=oota-llvm.git Also print alignment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46895 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index 6d4bc30150a..5744ba87ee5 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 << "";