You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
867 B
23 lines
867 B
// RUN: %clang_cc1 -E -frewrite-includes -I %S/Inputs %s | FileCheck %s --check-prefix=GNU
|
|
// RUN: %clang_cc1 -E -frewrite-includes -fuse-line-directives -I %S/Inputs %s | FileCheck %s --check-prefix=LINE
|
|
#include "test.h"
|
|
int f() { return x; }
|
|
|
|
// GNU: {{^}}# 1 "{{.*}}rewrite-includes-line-markers.c"
|
|
// GNU: {{^}}#include "test.h"
|
|
// GNU: {{^}}# 1 "{{.*}}test.h"
|
|
// GNU: {{^}}#include "test2.h"
|
|
// GNU: {{^}}# 1 "{{.*}}test2.h"
|
|
// GNU: {{^}}int x;
|
|
// GNU: {{^}}# 4 "{{.*}}rewrite-includes-line-markers.c" 2
|
|
// GNU: {{^}}int f() { return x; }
|
|
|
|
// LINE: {{^}}#line 1 "{{.*}}rewrite-includes-line-markers.c"
|
|
// LINE: {{^}}#include "test.h"
|
|
// LINE: {{^}}#line 1 "{{.*}}test.h"
|
|
// LINE: {{^}}#include "test2.h"
|
|
// LINE: {{^}}#line 1 "{{.*}}test2.h"
|
|
// LINE: {{^}}int x;
|
|
// LINE: {{^}}#line 4 "{{.*}}rewrite-includes-line-markers.c"
|
|
// LINE: {{^}}int f() { return x; }
|