diff options
author | Lang Hames <lhames@gmail.com> | 2010-07-20 10:29:46 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2010-07-20 10:29:46 +0000 |
commit | 2ff2193a80f988d67e852fd64d3cdd83a67fdc24 (patch) | |
tree | 67fb6522ceba5247639f0581d2efc48f0a3be0ce /llvm/lib/CodeGen/RenderMachineFunction.cpp | |
parent | a475ab7f02bbb859d49e4b0d18c07659b6fd4e48 (diff) | |
download | bcm5719-llvm-2ff2193a80f988d67e852fd64d3cdd83a67fdc24.tar.gz bcm5719-llvm-2ff2193a80f988d67e852fd64d3cdd83a67fdc24.zip |
Oops - I tables render poorly in Chrome without this explicit height specification.
llvm-svn: 108824
Diffstat (limited to 'llvm/lib/CodeGen/RenderMachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RenderMachineFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RenderMachineFunction.cpp b/llvm/lib/CodeGen/RenderMachineFunction.cpp index 708646c65c3..f1d24bbb220 100644 --- a/llvm/lib/CodeGen/RenderMachineFunction.cpp +++ b/llvm/lib/CodeGen/RenderMachineFunction.cpp @@ -774,7 +774,7 @@ namespace llvm { i = i.getNextSlot()) { // Render the slot column. - os << indent + s(2) << "<tr>\n"; + os << indent + s(2) << "<tr height=6ex>\n"; // Render the code column. if (i.getSlot() == SlotIndex::LOAD) { |