Skip to content

Commit 4055be5

Browse files
authored
Fix broken clang codegen test (avx-cxx-record.cpp) (#125787)
Fixes e8a486e
1 parent 7dca2c6 commit 4055be5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/test/CodeGen/X86/avx-cxx-record.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %clang %s -S --target=x86_64-unknown-linux-gnu -emit-llvm -O2 -march=x86-64-v3 -o - | FileCheck %s
1+
// RUN: %clang_cc1 %s -triple x86_64-unknown-linux-gnu -emit-llvm -O2 -target-cpu x86-64-v3 -o - | FileCheck %s
22

33
using UInt64x2 = unsigned long long __attribute__((__vector_size__(16), may_alias));
44

@@ -11,7 +11,7 @@ struct XMM2 : XMM1<0>, XMM1<1> {
1111
};
1212

1313
// CHECK: define{{.*}} @_Z3foov({{.*}} [[ARG:%.*]]){{.*}}
14-
// CHECK-NEXT: entry:
14+
// CHECK: entry:
1515
// CHECK-NEXT: store {{.*}}, ptr [[ARG]]{{.*}}
1616
// CHECK-NEXT: [[TMP1:%.*]] = getelementptr {{.*}}, ptr [[ARG]]{{.*}}
1717
// CHECK-NEXT: store {{.*}}, ptr [[TMP1]]{{.*}}

0 commit comments

Comments
 (0)