Skip to content

Commit 1accedc

Browse files
committed
[X86] setcc-lowering.ll - add nounwind to remove cfi noise. NFC.
1 parent e1fdaaa commit 1accedc

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

llvm/test/CodeGen/X86/setcc-lowering.ll

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
; Verify that we don't crash during codegen due to a wrong lowering
88
; of a setcc node with illegal operand types and return type.
99

10-
define <8 x i16> @pr25080(<8 x i32> %a) {
10+
define <8 x i16> @pr25080(<8 x i32> %a) nounwind {
1111
; AVX1-LABEL: pr25080:
1212
; AVX1: # %bb.0: # %entry
1313
; AVX1-NEXT: vextractf128 $1, %ymm0, %xmm0
@@ -50,7 +50,7 @@ entry:
5050
ret <8 x i16> %3
5151
}
5252

53-
define void @pr26232(i64 %a, <16 x i1> %b) {
53+
define void @pr26232(i64 %a, <16 x i1> %b) nounwind {
5454
; AVX1-LABEL: pr26232:
5555
; AVX1: # %bb.0: # %allocas
5656
; AVX1-NEXT: vpxor %xmm1, %xmm1, %xmm1
@@ -89,8 +89,6 @@ define void @pr26232(i64 %a, <16 x i1> %b) {
8989
; KNL-32-LABEL: pr26232:
9090
; KNL-32: # %bb.0: # %allocas
9191
; KNL-32-NEXT: pushl %esi
92-
; KNL-32-NEXT: .cfi_def_cfa_offset 8
93-
; KNL-32-NEXT: .cfi_offset %esi, -8
9492
; KNL-32-NEXT: vpmovsxbd %xmm0, %zmm0
9593
; KNL-32-NEXT: vpslld $31, %zmm0, %zmm0
9694
; KNL-32-NEXT: vptestmd %zmm0, %zmm0, %k0
@@ -111,7 +109,6 @@ define void @pr26232(i64 %a, <16 x i1> %b) {
111109
; KNL-32-NEXT: jne .LBB1_1
112110
; KNL-32-NEXT: # %bb.2: # %for_exit600
113111
; KNL-32-NEXT: popl %esi
114-
; KNL-32-NEXT: .cfi_def_cfa_offset 4
115112
; KNL-32-NEXT: retl
116113
allocas:
117114
br label %for_test11.preheader
@@ -132,7 +129,7 @@ for_exit600: ; preds = %for_loop599
132129
ret void
133130
}
134131

135-
define <4 x i32> @pcmpgt(<4 x i8> %x) {
132+
define <4 x i32> @pcmpgt(<4 x i8> %x) nounwind {
136133
; AVX-LABEL: pcmpgt:
137134
; AVX: # %bb.0:
138135
; AVX-NEXT: vpmovzxbd {{.*#+}} xmm0 = xmm0[0],zero,zero,zero,xmm0[1],zero,zero,zero,xmm0[2],zero,zero,zero,xmm0[3],zero,zero,zero

0 commit comments

Comments
 (0)