llvm-6502/test/CodeGen/Mips/null.ll
Akira Hatanaka 1418045472 1. introduce MipsPat in place of Pat in order to exclude those from
being used by Mips16 or Micro Mips
2. clean up a few lines too long encountered

Patch by Reed Kotler.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158470 91177308-0d34-0410-b5e6-96231b3b80d8
2012-06-14 21:03:23 +00:00

18 lines
332 B
LLVM

; RUN: llc -march=mipsel -mcpu=mips16 < %s | FileCheck %s -check-prefix=16
; FIXME: Disabled temporarily because it should not have worked previously
; and will be fixed after a subsequent patch
; REQUIRES: disabled
define i32 @main() nounwind {
entry:
ret i32 0
; 16: .set mips16 # @main
; 16: jr $ra
}