Skip to content

Commit db8dda5

Browse files
committed
improve test readability
Signed-off-by: Sarnie, Nick <[email protected]>
1 parent 8f1346c commit db8dda5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// RUN: %clang_cc1 -triple aarch64 -ast-dump -ast-dump-filter foo %s \
22
// RUN: | FileCheck --strict-whitespace %s
33

4-
// CHECK: {{foo1 'void \(\) __attribute__\(\(device_kernel\)\)'$}}
4+
// CHECK: foo1 'void () __attribute__((device_kernel))'{{$}}
55
void foo1() __attribute__((device_kernel));
66

7-
// CHECK: {{foo2 'void \(\) __attribute__\(\(aarch64_vector_pcs\)\)'$}}
7+
// CHECK: foo2 'void () __attribute__((aarch64_vector_pcs))'{{$}}
88
void foo2() __attribute__((aarch64_vector_pcs));
99

10-
// CHECK: {{foo3 'void \(\) __attribute__\(\(aarch64_sve_pcs\)\)'$}}
10+
// CHECK: foo3 'void () __attribute__((aarch64_sve_pcs))'{{$}}
1111
void foo3() __attribute__((aarch64_sve_pcs));

0 commit comments

Comments
 (0)