[llvm-commits] [llvm] r108824 - /llvm/trunk/lib/CodeGen/RenderMachineFunction.cpp
Lang Hames
lhames at gmail.com
Tue Jul 20 03:29:46 PDT 2010
Author: lhames
Date: Tue Jul 20 05:29:46 2010
New Revision: 108824
URL: http://llvm.org/viewvc/llvm-project?rev=108824&view=rev
Log:
Oops - I tables render poorly in Chrome without this explicit height specification.
Modified:
llvm/trunk/lib/CodeGen/RenderMachineFunction.cpp
Modified: llvm/trunk/lib/CodeGen/RenderMachineFunction.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/RenderMachineFunction.cpp?rev=108824&r1=108823&r2=108824&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/RenderMachineFunction.cpp (original)
+++ llvm/trunk/lib/CodeGen/RenderMachineFunction.cpp Tue Jul 20 05:29:46 2010
@@ -774,7 +774,7 @@
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) {
More information about the llvm-commits
mailing list