• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llc < %s -march=xcore > %t1.s
2; RUN: grep "get r11, id" %t1.s | count 1
3declare i32 @llvm.xcore.getid()
4
5define i32 @test() {
6	%result = call i32 @llvm.xcore.getid()
7	ret i32 %result
8}
9