Skip to content

Commit 99354f9

Browse files
authored
[clang][test] Fix SemaCXX/msvc-pragma-function-no-builtin-attr.cpp for x86 (#119986)
Fix test failure from #119719 84b0f01 Closes #119979
1 parent aaadaee commit 99354f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/test/SemaCXX/msvc-pragma-function-no-builtin-attr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ int bar() {
1818

1919
struct A {
2020
int foo() = delete;
21-
// CHECK: CXXMethodDecl {{.*}} foo 'int ()' delete
21+
// CHECK: CXXMethodDecl {{.*}} foo {{.*}} delete
2222
// CHECK-NOT: NoBuiltinAttr
2323
A() = default;
24-
// CHECK: CXXConstructorDecl {{.*}} A 'void ()' default
24+
// CHECK: CXXConstructorDecl {{.*}} A {{.*}} default
2525
// CHECK-NOT: NoBuiltinAttr
2626
};
2727

0 commit comments

Comments
 (0)