[llvm-commits] [llvm] r93835 - /llvm/trunk/lib/MC/MCAssembler.cpp
Nate Begeman
natebegeman at mac.com
Mon Jan 18 17:32:44 PST 2010
Author: sampo
Date: Mon Jan 18 19:32:44 2010
New Revision: 93835
URL: http://llvm.org/viewvc/llvm-project?rev=93835&view=rev
Log:
Remove this fixme, looking at the linker source, all targets pad to 4 bytes.
Modified:
llvm/trunk/lib/MC/MCAssembler.cpp
Modified: llvm/trunk/lib/MC/MCAssembler.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/MCAssembler.cpp?rev=93835&r1=93834&r2=93835&view=diff
==============================================================================
--- llvm/trunk/lib/MC/MCAssembler.cpp (original)
+++ llvm/trunk/lib/MC/MCAssembler.cpp Mon Jan 18 19:32:44 2010
@@ -679,8 +679,6 @@
UndefinedSymbolData[i].SymbolData->setIndex(Index++);
// The string table is padded to a multiple of 4.
- //
- // FIXME: Check to see if this varies per arch.
while (StringTable.size() % 4)
StringTable += '\x00';
}
More information about the llvm-commits
mailing list