diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-11-11 23:41:09 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-11-11 23:41:09 +0000 |
commit | 20b6fd7d5d7918ffc3ab833334df3fcdca3546f1 (patch) | |
tree | 6dd1784991491f57db5da0319325e4592e013314 /llvm/lib/Target/ARM/ARMAsmBackend.cpp | |
parent | 3d57ee7b43230cf6d852c4deefa0cd569e5be73f (diff) | |
download | bcm5719-llvm-20b6fd7d5d7918ffc3ab833334df3fcdca3546f1.tar.gz bcm5719-llvm-20b6fd7d5d7918ffc3ab833334df3fcdca3546f1.zip |
Start of support for binary emit of 16-it Thumb instructions.
llvm-svn: 118859
Diffstat (limited to 'llvm/lib/Target/ARM/ARMAsmBackend.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMAsmBackend.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/llvm/lib/Target/ARM/ARMAsmBackend.cpp b/llvm/lib/Target/ARM/ARMAsmBackend.cpp index 54cd1aefd4f..d5a27592da0 100644 --- a/llvm/lib/Target/ARM/ARMAsmBackend.cpp +++ b/llvm/lib/Target/ARM/ARMAsmBackend.cpp @@ -56,10 +56,14 @@ void ARMAsmBackend::RelaxInstruction(const MCInst &Inst, MCInst &Res) const { } bool ARMAsmBackend::WriteNopData(uint64_t Count, MCObjectWriter *OW) const { - if ((Count % 4) != 0) { - // Fixme: % 2 for Thumb? - return false; - } +// if ((Count % 4) != 0) { +// // Fixme: % 2 for Thumb? +// return false; +// } + // FIXME: Zero fill for now. That's not right, but at least will get the + // section size right. + for (uint64_t i = 0; i != Count; ++i) + OW->Write8(0); return true; } } // end anonymous namespace |