aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorjiang <30155751@qq.com>2014-05-14 12:45:58 +0800
committerjiang <30155751@qq.com>2014-05-14 12:45:58 +0800
commit07614b5e22073cbb2c1b298ab906d57372619604 (patch)
treeb2786a80aeadc4dd860ccd9e30ebd0c5711202b0 /tests
parentc6345b5a8af36d5577307860644010b1528257d3 (diff)
downloadtinycc-07614b5e22073cbb2c1b298ab906d57372619604.tar.gz
tinycc-07614b5e22073cbb2c1b298ab906d57372619604.tar.bz2
clean '\t'
Diffstat (limited to 'tests')
-rw-r--r--tests/tcctest.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/tests/tcctest.c b/tests/tcctest.c
index ee4a0e6..3a62354 100644
--- a/tests/tcctest.c
+++ b/tests/tcctest.c
@@ -380,21 +380,21 @@ comment
comment. */
TEST2 /* the comment */ ();
/* macro_push and macro_pop test */
- #define MACRO_TEST "macro_test1\n"
- #pragma push_macro("MACRO_TEST")
- #undef MACRO_TEST
- #define MACRO_TEST "macro_test2\n"
- printf(MACRO_TEST);
- #pragma pop_macro("MACRO_TEST")
- printf(MACRO_TEST);
+ #define MACRO_TEST "macro_test1\n"
+ #pragma push_macro("MACRO_TEST")
+ #undef MACRO_TEST
+ #define MACRO_TEST "macro_test2\n"
+ printf(MACRO_TEST);
+ #pragma pop_macro("MACRO_TEST")
+ printf(MACRO_TEST);
/* gcc does not support
- #define MACRO_TEST_MACRO "MACRO_TEST"
- #pragma push_macro(MACRO_TEST_MACRO)
- #undef MACRO_TEST
- #define MACRO_TEST "macro_test3\n"
- printf(MACRO_TEST);
- #pragma pop_macro(MACRO_TEST_MACRO)
- printf(MACRO_TEST);
+ #define MACRO_TEST_MACRO "MACRO_TEST"
+ #pragma push_macro(MACRO_TEST_MACRO)
+ #undef MACRO_TEST
+ #define MACRO_TEST "macro_test3\n"
+ printf(MACRO_TEST);
+ #pragma pop_macro(MACRO_TEST_MACRO)
+ printf(MACRO_TEST);
*/
}