llvm-6502/test/CodeGen/XCore/getid.ll
2008-11-14 10:12:16 +00:00

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
}