mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
16efb0d1a0
This also fixes the placement of the function label comment. It was being placed next to the mips16 directive instead of next to the label. llvm-svn: 199245
14 lines
166 B
LLVM
14 lines
166 B
LLVM
; RUN: llc -march=mipsel -mcpu=mips16 < %s | FileCheck %s -check-prefix=16
|
|
|
|
|
|
define i32 @main() nounwind {
|
|
entry:
|
|
ret i32 0
|
|
|
|
; 16: .set mips16
|
|
|
|
|
|
; 16: jrc $ra
|
|
|
|
}
|