diff options
Diffstat (limited to 'clang/test/AST/dump.cpp')
-rw-r--r-- | clang/test/AST/dump.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/AST/dump.cpp b/clang/test/AST/dump.cpp index e257cfa99ed..641abc5ea64 100644 --- a/clang/test/AST/dump.cpp +++ b/clang/test/AST/dump.cpp @@ -5,7 +5,7 @@ int ga, gb; #pragma omp threadprivate(ga, gb) -// CHECK: |-OMPThreadPrivateDecl {{.+}} <col:9> col:9 +// CHECK: |-OMPThreadPrivateDecl {{.+}} <col:1> col:1 // CHECK-NEXT: | |-DeclRefExpr {{.+}} <col:27> 'int' lvalue Var {{.+}} 'ga' 'int' // CHECK-NEXT: | `-DeclRefExpr {{.+}} <col:31> 'int' lvalue Var {{.+}} 'gb' 'int' @@ -50,7 +50,7 @@ struct S { } }; -// CHECK: | `-OMPParallelForDirective {{.+}} {{<line:.+:9, col:80>|<col:9, col:80>}} +// CHECK: | `-OMPParallelForDirective {{.+}} {{<line:.+:1, col:80>|<col:1, col:80>}} // CHECK-NEXT: | |-OMPDefaultClause {{.+}} <col:26, col:38> // CHECK-NEXT: | |-OMPPrivateClause {{.+}} <col:40, col:49> // CHECK-NEXT: | | `-DeclRefExpr {{.+}} <col:48> 'int' lvalue OMPCapturedExpr {{.+}} 'a' 'int &' @@ -71,8 +71,8 @@ struct S { void foo(); // CHECK: |-FunctionDecl {{.+}} <line:[[@LINE-2]]:1, col:10> col:6 foo 'void ()' -// CHECK-NEXT: |-OMPDeclareSimdDeclAttr {{.+}} <line:[[@LINE-4]]:9, col:34> Implicit BS_Inbranch -// CHECK: `-OMPDeclareSimdDeclAttr {{.+}} <line:[[@LINE-6]]:9, col:25> Implicit BS_Undefined +// CHECK-NEXT: |-OMPDeclareSimdDeclAttr {{.+}} <line:[[@LINE-4]]:1, col:34> Implicit BS_Inbranch +// CHECK: `-OMPDeclareSimdDeclAttr {{.+}} <line:[[@LINE-6]]:1, col:25> Implicit BS_Undefined #pragma omp declare target int bar() { |