annotate clang/test/Format/xmloutput.cpp @ 165:597b3f1c2c93
fix call createTailCallEliminationPass
author |
anatofuz |
date |
Tue, 24 Mar 2020 15:30:52 +0900 |
parents |
1d019706d866 |
children |
|
rev |
line source |
150
|
1 // RUN: clang-format -style=LLVM -output-replacements-xml -sort-includes %s \
|
|
2 // RUN: | FileCheck -strict-whitespace %s
|
|
3
|
|
4 // CHECK: <?xml
|
|
5 // CHECK-NEXT: {{<replacements.*incomplete_format='false'}}
|
|
6 // CHECK-NEXT: {{<replacement.*#include <a> #include <b><}}
|
|
7 // CHECK-NEXT: {{<replacement.*> <}}
|
|
8 // CHECK-NEXT: {{<replacement.*> <}}
|
|
9 #include <b>
|
|
10 #include <a>
|
|
11
|
|
12 int a;int*b;
|