diff options
Diffstat (limited to 'llvm/test/CodeGen/R600/select64.ll')
| -rw-r--r-- | llvm/test/CodeGen/R600/select64.ll | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/llvm/test/CodeGen/R600/select64.ll b/llvm/test/CodeGen/R600/select64.ll index 1bc01daee1c..8de34d521a5 100644 --- a/llvm/test/CodeGen/R600/select64.ll +++ b/llvm/test/CodeGen/R600/select64.ll @@ -3,9 +3,9 @@ ; CHECK-LABEL: {{^}}select0: ; i64 select should be split into two i32 selects, and we shouldn't need ; to use a shfit to extract the hi dword of the input. -; CHECK-NOT: S_LSHR_B64 -; CHECK: V_CNDMASK -; CHECK: V_CNDMASK +; CHECK-NOT: s_lshr_b64 +; CHECK: v_cndmask +; CHECK: v_cndmask define void @select0(i64 addrspace(1)* %out, i32 %cond, i64 %in) { entry: %0 = icmp ugt i32 %cond, 5 @@ -15,8 +15,8 @@ entry: } ; CHECK-LABEL: {{^}}select_trunc_i64: -; CHECK: V_CNDMASK_B32 -; CHECK-NOT: V_CNDMASK_B32 +; CHECK: v_cndmask_b32 +; CHECK-NOT: v_cndmask_b32 define void @select_trunc_i64(i32 addrspace(1)* %out, i32 %cond, i64 %in) nounwind { %cmp = icmp ugt i32 %cond, 5 %sel = select i1 %cmp, i64 0, i64 %in @@ -26,8 +26,8 @@ define void @select_trunc_i64(i32 addrspace(1)* %out, i32 %cond, i64 %in) nounwi } ; CHECK-LABEL: {{^}}select_trunc_i64_2: -; CHECK: V_CNDMASK_B32 -; CHECK-NOT: V_CNDMASK_B32 +; CHECK: v_cndmask_b32 +; CHECK-NOT: v_cndmask_b32 define void @select_trunc_i64_2(i32 addrspace(1)* %out, i32 %cond, i64 %a, i64 %b) nounwind { %cmp = icmp ugt i32 %cond, 5 %sel = select i1 %cmp, i64 %a, i64 %b @@ -37,8 +37,8 @@ define void @select_trunc_i64_2(i32 addrspace(1)* %out, i32 %cond, i64 %a, i64 % } ; CHECK-LABEL: {{^}}v_select_trunc_i64_2: -; CHECK: V_CNDMASK_B32 -; CHECK-NOT: V_CNDMASK_B32 +; CHECK: v_cndmask_b32 +; CHECK-NOT: v_cndmask_b32 define void @v_select_trunc_i64_2(i32 addrspace(1)* %out, i32 %cond, i64 addrspace(1)* %aptr, i64 addrspace(1)* %bptr) nounwind { %cmp = icmp ugt i32 %cond, 5 %a = load i64 addrspace(1)* %aptr, align 8 |

