Files
clang-p2996/llvm/test/CodeGen/Mips/Fast-ISel/nullvoid.ll
Reed Kotler 67077b3032 Add Simple return instruction to Mips fast-isel
Reviewers: dsanders

Reviewed by: dsanders

Differential Revision: http://reviews.llvm.org/D3430

llvm-svn: 207565
2014-04-29 17:57:50 +00:00

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
}