Skip to content

Commit 1dbd13c

Browse files
committed
revert unrelated test cases changes
1 parent 4dc4343 commit 1dbd13c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

clang/test/CIR/CodeGenBuiltins/X86/avx512f-builtins.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
__m512 test_mm512_undefined(void) {
1919
// CIR-LABEL: _mm512_undefined
2020
// CIR: %[[A:.*]] = cir.const #cir.zero : !cir.vector<8 x !cir.double>
21-
// CIR: cir.cast bitcast %[[A]] : !cir.vector<8 x !cir.double> -> !cir.vector<16 x !cir.float>
21+
// CIR: %{{.*}} = cir.cast bitcast %[[A]] : !cir.vector<8 x !cir.double> -> !cir.vector<16 x !cir.float>
2222
// CIR: cir.return %{{.*}} : !cir.vector<16 x !cir.float>
2323

2424
// LLVM-LABEL: test_mm512_undefined
2525
// LLVM: store <16 x float> zeroinitializer, ptr %[[A:.*]], align 64
26-
// LLVM: load <16 x float>, ptr %[[A]], align 64
26+
// LLVM: %{{.*}} = load <16 x float>, ptr %[[A]], align 64
2727
// LLVM: ret <16 x float> %{{.*}}
2828

2929
// OGCG-LABEL: test_mm512_undefined
@@ -34,12 +34,12 @@ __m512 test_mm512_undefined(void) {
3434
__m512 test_mm512_undefined_ps(void) {
3535
// CIR-LABEL: _mm512_undefined_ps
3636
// CIR: %[[A:.*]] = cir.const #cir.zero : !cir.vector<8 x !cir.double>
37-
// CIR: cir.cast bitcast %[[A]] : !cir.vector<8 x !cir.double> -> !cir.vector<16 x !cir.float>
37+
// CIR: %{{.*}} = cir.cast bitcast %[[A]] : !cir.vector<8 x !cir.double> -> !cir.vector<16 x !cir.float>
3838
// CIR: cir.return %{{.*}} : !cir.vector<16 x !cir.float>
3939

4040
// LLVM-LABEL: test_mm512_undefined_ps
4141
// LLVM: store <16 x float> zeroinitializer, ptr %[[A:.*]], align 64
42-
// LLVM: load <16 x float>, ptr %[[A]], align 64
42+
// LLVM: %{{.*}} = load <16 x float>, ptr %[[A]], align 64
4343
// LLVM: ret <16 x float> %{{.*}}
4444

4545
// OGCG-LABEL: test_mm512_undefined_ps
@@ -49,12 +49,12 @@ __m512 test_mm512_undefined_ps(void) {
4949

5050
__m512d test_mm512_undefined_pd(void) {
5151
// CIR-LABEL: _mm512_undefined_pd
52-
// CIR: cir.const #cir.zero : !cir.vector<8 x !cir.double>
52+
// CIR: %{{.*}} = cir.const #cir.zero : !cir.vector<8 x !cir.double>
5353
// CIR: cir.return %{{.*}} : !cir.vector<8 x !cir.double>
5454

5555
// LLVM-LABEL: test_mm512_undefined_pd
5656
// LLVM: store <8 x double> zeroinitializer, ptr %[[A:.*]], align 64
57-
// LLVM: load <8 x double>, ptr %[[A]], align 64
57+
// LLVM: %{{.*}} = load <8 x double>, ptr %[[A]], align 64
5858
// LLVM: ret <8 x double> %{{.*}}
5959

6060
// OGCG-LABEL: test_mm512_undefined_pd
@@ -64,13 +64,13 @@ __m512d test_mm512_undefined_pd(void) {
6464

6565
__m512i test_mm512_undefined_epi32(void) {
6666
// CIR-LABEL: _mm512_undefined_epi32
67-
// CIR: cir.const #cir.zero : !cir.vector<8 x !cir.double>
68-
// CIR: cir.cast bitcast %[[A]] : !cir.vector<8 x !cir.double> -> !cir.vector<8 x !s64i>
67+
// CIR: %[[A:.*]] = cir.const #cir.zero : !cir.vector<8 x !cir.double>
68+
// CIR: %{{.*}} = cir.cast bitcast %[[A]] : !cir.vector<8 x !cir.double> -> !cir.vector<8 x !s64i>
6969
// CIR: cir.return %{{.*}} : !cir.vector<8 x !s64i>
7070

7171
// LLVM-LABEL: test_mm512_undefined_epi32
7272
// LLVM: store <8 x i64> zeroinitializer, ptr %[[A:.*]], align 64
73-
// LLVM: load <8 x i64>, ptr %[[A]], align 64
73+
// LLVM: %{{.*}} = load <8 x i64>, ptr %[[A]], align 64
7474
// LLVM: ret <8 x i64> %{{.*}}
7575

7676
// OGCG-LABEL: test_mm512_undefined_epi32

0 commit comments

Comments
 (0)