projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
585457e
)
Align EH tables before label is emitted, not after,
author
Dale Johannesen
<dalej@apple.com>
Wed, 8 Oct 2008 21:50:21 +0000
(21:50 +0000)
committer
Dale Johannesen
<dalej@apple.com>
Wed, 8 Oct 2008 21:50:21 +0000
(21:50 +0000)
thus aligning the label.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57310
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/AsmPrinter/DwarfWriter.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/AsmPrinter/DwarfWriter.cpp
b/lib/CodeGen/AsmPrinter/DwarfWriter.cpp
index 168b36c24425fcd02c0eef05446519acbbc29ee7..3cfe00e7e07ad6ceea530882ae0fb81fa56a26bd 100644
(file)
--- a/
lib/CodeGen/AsmPrinter/DwarfWriter.cpp
+++ b/
lib/CodeGen/AsmPrinter/DwarfWriter.cpp
@@
-3430,8
+3430,8
@@
private:
// Begin the exception table.
Asm->SwitchToDataSection(TAI->getDwarfExceptionSection());
- O << "GCC_except_table" << SubprogramCount << ":\n";
Asm->EmitAlignment(2, 0, 0, false);
+ O << "GCC_except_table" << SubprogramCount << ":\n";
for (unsigned i = 0; i != SizeAlign; ++i) {
Asm->EmitInt8(0);
Asm->EOL("Padding");