1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00
llvm-mirror/test/CodeGen/XCore/getid.ll

9 lines
193 B
LLVM
Raw Normal View History

; RUN: llc < %s -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
}