From: Lang Hames Date: Tue, 20 Jul 2010 10:29:46 +0000 (+0000) Subject: Oops - I tables render poorly in Chrome without this explicit height specification. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2725abd039d7b0189ebe2096ce4fd25794c5cc84;p=oota-llvm.git Oops - I tables render poorly in Chrome without this explicit height specification. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108824 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/RenderMachineFunction.cpp b/lib/CodeGen/RenderMachineFunction.cpp index 708646c65c3..f1d24bbb220 100644 --- a/lib/CodeGen/RenderMachineFunction.cpp +++ b/lib/CodeGen/RenderMachineFunction.cpp @@ -774,7 +774,7 @@ namespace llvm { i = i.getNextSlot()) { // Render the slot column. - os << indent + s(2) << "\n"; + os << indent + s(2) << "\n"; // Render the code column. if (i.getSlot() == SlotIndex::LOAD) {