[InstCombine] Signed saturation patterns
[llvm-core.git] / test / CodeGen / XCore / ps-intrinsics.ll
blob02609ed8d678f31a952a1aea84229636fdfb8180
1 ; RUN: llc < %s -march=xcore | FileCheck %s
2 declare i32 @llvm.xcore.getps(i32)
3 declare void @llvm.xcore.setps(i32, i32)
5 define i32 @getps(i32 %reg) nounwind {
6 ; CHECK-LABEL: getps:
7 ; CHECK: get r0, ps[r0]
8         %result = call i32 @llvm.xcore.getps(i32 %reg)
9         ret i32 %result
13 define void @setps(i32 %reg, i32 %value) nounwind {
14 ; CHECK-LABEL: setps:
15 ; CHECK: set ps[r0], r1
16         call void @llvm.xcore.setps(i32 %reg, i32 %value)
17         ret void