diff options
Diffstat (limited to 'llvm/test/CodeGen/ARM/vselect_imax.ll')
| -rw-r--r-- | llvm/test/CodeGen/ARM/vselect_imax.ll | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/ARM/vselect_imax.ll b/llvm/test/CodeGen/ARM/vselect_imax.ll index 3f52ac2db87..85c8c5cfcda 100644 --- a/llvm/test/CodeGen/ARM/vselect_imax.ll +++ b/llvm/test/CodeGen/ARM/vselect_imax.ll @@ -10,8 +10,6 @@ define void @vmax_v4i32(<4 x i32>* %m, <4 x i32> %a, <4 x i32> %b) { ret void } -; We adjusted the cost model of the following selects. When we improve code -; lowering we also need to adjust the cost. %T0_10 = type <16 x i16> %T1_10 = type <16 x i1> ; CHECK-LABEL: func_blend10: @@ -23,7 +21,7 @@ define void @func_blend10(%T0_10* %loadaddr, %T0_10* %loadaddr2, ; CHECK: vmin.s16 ; CHECK: vmin.s16 ; COST: func_blend10 -; COST: cost of 40 {{.*}} select +; COST: cost of 2 {{.*}} select %r = select %T1_10 %c, %T0_10 %v0, %T0_10 %v1 store %T0_10 %r, %T0_10* %storeaddr ret void @@ -39,7 +37,7 @@ define void @func_blend14(%T0_14* %loadaddr, %T0_14* %loadaddr2, ; CHECK: vmin.s32 ; CHECK: vmin.s32 ; COST: func_blend14 -; COST: cost of 41 {{.*}} select +; COST: cost of 2 {{.*}} select %r = select %T1_14 %c, %T0_14 %v0, %T0_14 %v1 store %T0_14 %r, %T0_14* %storeaddr ret void @@ -55,11 +53,14 @@ define void @func_blend15(%T0_15* %loadaddr, %T0_15* %loadaddr2, %v1 = load %T0_15, %T0_15* %loadaddr2 %c = icmp slt %T0_15 %v0, %v1 ; COST: func_blend15 -; COST: cost of 82 {{.*}} select +; COST: cost of 4 {{.*}} select %r = select %T1_15 %c, %T0_15 %v0, %T0_15 %v1 store %T0_15 %r, %T0_15* %storeaddr ret void } + +; We adjusted the cost model of the following selects. When we improve code +; lowering we also need to adjust the cost. %T0_18 = type <4 x i64> %T1_18 = type <4 x i1> ; CHECK-LABEL: func_blend18: |

