diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-22 00:07:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-22 00:07:50 +0000 |
commit | 21fbe0d9eaf7feac7b7593a3917a8b555eaec714 (patch) | |
tree | 5e92dd018310875c2885bd5bc4c6409b0ad70b57 | |
parent | 0e561a3e6755c4f248a8bb05d49071ddf4f2ef7b (diff) |
fix this test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48668 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Preprocessor/macro_paste_mscomment.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Preprocessor/macro_paste_mscomment.c b/test/Preprocessor/macro_paste_mscomment.c index bc364ea170..858337a879 100644 --- a/test/Preprocessor/macro_paste_mscomment.c +++ b/test/Preprocessor/macro_paste_mscomment.c @@ -1,4 +1,4 @@ -// RUN: clang -E -fms-extensions %s | sed '/^#.\+/d' | tr -d '\n' | +// RUN: clang -P -E -fms-extensions %s | sed '/^#.\+/d' | tr -d '\n' | // RUN: grep '^int foo;int bar;int baz;$' | count 1 // This horrible stuff should preprocess into (other than whitespace): // int foo; |