mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 07:34:33 +00:00
disable use of directive .set nomicromips
until this directive is pushed in gas to open source fsf Patch by Reed Kotler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158381 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1c2d3c538c
commit
942918d13e
@ -200,7 +200,8 @@ void MipsAsmPrinter::EmitFunctionEntryLabel() {
|
||||
OutStreamer.EmitRawText(StringRef("\t.set\tmips16"));
|
||||
else
|
||||
OutStreamer.EmitRawText(StringRef("\t.set\tnomips16"));
|
||||
OutStreamer.EmitRawText(StringRef("\t.set\tnomicromips"));
|
||||
// leave out until FSF available gas has micromips changes
|
||||
// OutStreamer.EmitRawText(StringRef("\t.set\tnomicromips"));
|
||||
OutStreamer.EmitRawText("\t.ent\t" + Twine(CurrentFnSym->getName()));
|
||||
}
|
||||
OutStreamer.EmitLabel(CurrentFnSym);
|
||||
|
@ -6,7 +6,7 @@ entry:
|
||||
ret i32 0
|
||||
|
||||
; 16: .set mips16 # @main
|
||||
; 16: .set nomicromips
|
||||
|
||||
|
||||
; 16: jr $ra
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user