summaryrefslogtreecommitdiff
path: root/lib/MC
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2010-01-19 01:32:44 +0000
committerNate Begeman <natebegeman@mac.com>2010-01-19 01:32:44 +0000
commit60a17740b845565f664e81a91b7019a520af88d7 (patch)
treed1b2d851fb137d10676499b50976d0cdf3c85e3c /lib/MC
parent9a7313af77e81fe894debafd8c93e2551a74d1a6 (diff)
downloadllvm-60a17740b845565f664e81a91b7019a520af88d7.tar.gz
llvm-60a17740b845565f664e81a91b7019a520af88d7.tar.bz2
llvm-60a17740b845565f664e81a91b7019a520af88d7.tar.xz
Remove this fixme, looking at the linker source, all targets pad to 4 bytes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93835 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC')
-rw-r--r--lib/MC/MCAssembler.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/MC/MCAssembler.cpp b/lib/MC/MCAssembler.cpp
index 1f5b6f140d..f0f5a47eb2 100644
--- a/lib/MC/MCAssembler.cpp
+++ b/lib/MC/MCAssembler.cpp
@@ -679,8 +679,6 @@ public:
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';
}