1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/CodeGen/XCore/bitrev.ll
2009-09-09 00:09:15 +00:00

9 lines
207 B
LLVM

; RUN: llc < %s -march=xcore > %t1.s
; RUN: grep bitrev %t1.s | count 1
declare i32 @llvm.xcore.bitrev(i32)
define i32 @test(i32 %val) {
%result = call i32 @llvm.xcore.bitrev(i32 %val)
ret i32 %result
}