diff options
| author | Hans Wennborg <hans@hanshq.net> | 2015-08-31 21:48:52 +0000 |
|---|---|---|
| committer | Hans Wennborg <hans@hanshq.net> | 2015-08-31 21:48:52 +0000 |
| commit | 2151d12ec095ec6c994c9dce31124f65a08720e3 (patch) | |
| tree | e4c45a4d74f6643a4646b9b7bed1e241d8ca6d35 /clang/test/Preprocessor | |
| parent | 642f6d3ffd1d2e028f234d7867be14fdc2e615ac (diff) | |
| download | bcm5719-llvm-2151d12ec095ec6c994c9dce31124f65a08720e3.tar.gz bcm5719-llvm-2151d12ec095ec6c994c9dce31124f65a08720e3.zip | |
Fix CHECK directives that weren't checking.
llvm-svn: 246492
Diffstat (limited to 'clang/test/Preprocessor')
| -rw-r--r-- | clang/test/Preprocessor/traditional-cpp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Preprocessor/traditional-cpp.c b/clang/test/Preprocessor/traditional-cpp.c index aa9f0f146e4..f311be0bb59 100644 --- a/clang/test/Preprocessor/traditional-cpp.c +++ b/clang/test/Preprocessor/traditional-cpp.c @@ -99,8 +99,8 @@ FOO_NO_STRINGIFY(foobar) */ #define FOO_NO_PASTE(a, b) test(b##a) -FOO_NO_PASTE(foo,bar) -/* CHECK {{^}}test(bar##foo){{$}} +FOO_NO_PASTE(xxx,yyy) +/* CHECK: {{^}}test(yyy##xxx){{$}} */ #define BAR_NO_STRINGIFY(a) test(#a) |

