mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
8f86bb4d20
bits in a word). llvm-svn: 59296
9 lines
203 B
LLVM
9 lines
203 B
LLVM
; RUN: llvm-as < %s | llc -march=xcore > %t1.s
|
|
; RUN: grep "get r11, id" %t1.s | count 1
|
|
declare i32 @llvm.xcore.getid()
|
|
|
|
define i32 @test() {
|
|
%result = call i32 @llvm.xcore.getid()
|
|
ret i32 %result
|
|
}
|