mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
10 lines
217 B
LLVM
10 lines
217 B
LLVM
|
; RUN: llc -march=mipsel -relocation-model=pic -O0 -mips-fast-isel -fast-isel-abort -mcpu=mips32r2 \
|
||
|
; RUN: < %s | FileCheck %s
|
||
|
|
||
|
; Function Attrs: nounwind
|
||
|
define void @foo() {
|
||
|
entry:
|
||
|
ret void
|
||
|
; CHECK: jr $ra
|
||
|
}
|