[cfe-commits] r108623 - in /cfe/trunk/test/Preprocessor: macro_paste_mscomment.c macro_paste_msextensions.c
Chris Lattner
sabre at nondot.org
Sat Jul 17 09:18:46 PDT 2010
Author: lattner
Date: Sat Jul 17 11:18:46 2010
New Revision: 108623
URL: http://llvm.org/viewvc/llvm-project?rev=108623&view=rev
Log:
rename test
Added:
cfe/trunk/test/Preprocessor/macro_paste_msextensions.c
- copied unchanged from r108621, cfe/trunk/test/Preprocessor/macro_paste_mscomment.c
Removed:
cfe/trunk/test/Preprocessor/macro_paste_mscomment.c
Removed: cfe/trunk/test/Preprocessor/macro_paste_mscomment.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Preprocessor/macro_paste_mscomment.c?rev=108622&view=auto
==============================================================================
--- cfe/trunk/test/Preprocessor/macro_paste_mscomment.c (original)
+++ cfe/trunk/test/Preprocessor/macro_paste_mscomment.c (removed)
@@ -1,26 +0,0 @@
-// RUN: %clang_cc1 -P -E -fms-extensions %s | FileCheck -strict-whitespace %s
-// This horrible stuff should preprocess into (other than whitespace):
-// int foo;
-// int bar;
-// int baz;
-
-int foo;
-
-// CHECK: int foo;
-
-#define comment /##/ dead tokens live here
-comment This is stupidity
-
-int bar;
-
-// CHECK: int bar;
-
-#define nested(x) int x comment cute little dead tokens...
-
-nested(baz) rise of the dead tokens
-
-;
-
-// CHECK: int baz
-// CHECK: ;
-
More information about the cfe-commits
mailing list