mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-02 09:33:59 +00:00
Fix opcode value for the 'trap' instruction, keeping the type suffix on the
constant. Hopefully the non-Darwin bots will like it... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114687 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5c49b69609
commit
24e6f2f802
@ -1729,7 +1729,7 @@ void ARMAsmPrinter::printInstructionThroughMCStreamer(const MachineInstr *MI) {
|
||||
// FIXME: Remove this special case when they do.
|
||||
if (!Subtarget->isTargetDarwin()) {
|
||||
//.long 0xe7ffdefe ${:comment} trap
|
||||
uint32_t Val = 0xe7ffdefeUL;
|
||||
uint32_t Val = 0xe7ffdefeeUL;
|
||||
OutStreamer.AddComment("trap");
|
||||
OutStreamer.EmitIntValue(Val, 4);
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user