annotate clang/test/Preprocessor/dump_include.c @ 165:597b3f1c2c93

fix call createTailCallEliminationPass
author anatofuz
date Tue, 24 Mar 2020 15:30:52 +0900
parents 1d019706d866
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // RUN: %clang_cc1 -w -E -dI -isystem %S -imacros %S/dump_include.h %s -o - | FileCheck %s
anatofuz
parents:
diff changeset
2 // CHECK: {{^}}#__include_macros "{{.*}}dump_
anatofuz
parents:
diff changeset
3 // CHECK: {{^}}#include <dump_
anatofuz
parents:
diff changeset
4 // CHECK: {{^}}#include "dump_
anatofuz
parents:
diff changeset
5 // CHECK: {{^}}#include_next "dump_
anatofuz
parents:
diff changeset
6
anatofuz
parents:
diff changeset
7 // See also `dump_import.m` which tests the `#import` directive with `-dI`.
anatofuz
parents:
diff changeset
8
anatofuz
parents:
diff changeset
9 #include <dump_include.h>
anatofuz
parents:
diff changeset
10 #include "dump_include.h"
anatofuz
parents:
diff changeset
11 #include_next "dump_include.h"