diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2014-11-24 09:15:30 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2014-11-24 09:15:30 +0000 |
commit | 9f4dbff6669c8037f3b036bcf580d14f1a4f12a5 (patch) | |
tree | 47df2c12b57214af6c31e47404b005675b8b7ffc /test/Misc/ast-dump-decl.c | |
parent | f73d5f23a889b93d89ddef61ac0995df40286bb8 (diff) |
Notes
Diffstat (limited to 'test/Misc/ast-dump-decl.c')
-rw-r--r-- | test/Misc/ast-dump-decl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Misc/ast-dump-decl.c b/test/Misc/ast-dump-decl.c index 94335b825c86..7d39e6b315c8 100644 --- a/test/Misc/ast-dump-decl.c +++ b/test/Misc/ast-dump-decl.c @@ -2,7 +2,7 @@ // RUN: %clang_cc1 -triple x86_64-unknown-unknown -ast-dump %s | FileCheck -check-prefix CHECK-TU -strict-whitespace %s int TestLocation; -// CHECK: VarDecl 0x{{[^ ]*}} <{{.*}}:4:1, col:5> TestLocation +// CHECK: VarDecl 0x{{[^ ]*}} <{{.*}}:4:1, col:5> col:5 TestLocation struct TestIndent { int x; @@ -47,7 +47,7 @@ struct TestEnumDeclAnon { } e; }; // CHECK: RecordDecl{{.*}} TestEnumDeclAnon -// CHECK-NEXT: EnumDecl{{.*>$}} +// CHECK-NEXT: EnumDecl{{.*> .*$}} enum TestEnumDeclForward; // CHECK: EnumDecl{{.*}} TestEnumDeclForward |