diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-14 04:28:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-14 04:28:50 +0000 |
commit | 86d0ef74303e9164a0860ce849af597d34f937ab (patch) | |
tree | d18c838540cad939a0f856be5d3e4a54ed10b597 /test/Preprocessor/line-directive-output.c | |
parent | 270083146ffd71d4ba35c0cda0b7461dea99e031 (diff) |
Improve line marker directive locations, patch by Jordy Rose
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101226 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Preprocessor/line-directive-output.c')
-rw-r--r-- | test/Preprocessor/line-directive-output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Preprocessor/line-directive-output.c b/test/Preprocessor/line-directive-output.c index fc1a310bf0..290703a50e 100644 --- a/test/Preprocessor/line-directive-output.c +++ b/test/Preprocessor/line-directive-output.c @@ -1,7 +1,7 @@ // RUN: %clang_cc1 -E %s 2>&1 | FileCheck %s -strict-whitespace // PR6101 int a; -// CHECK: # 2 "{{.*}}line-directive-output.c" +// CHECK: # 1 "{{.*}}line-directive-output.c" // CHECK: int a; // CHECK-NEXT: # 50 "{{.*}}line-directive-output.c" |