diff options
| author | jiang <30155751@qq.com> | 2014-05-14 12:45:58 +0800 |
|---|---|---|
| committer | jiang <30155751@qq.com> | 2014-05-14 12:45:58 +0800 |
| commit | 07614b5e22073cbb2c1b298ab906d57372619604 (patch) | |
| tree | b2786a80aeadc4dd860ccd9e30ebd0c5711202b0 /tests | |
| parent | c6345b5a8af36d5577307860644010b1528257d3 (diff) | |
| download | tinycc-07614b5e22073cbb2c1b298ab906d57372619604.tar.gz tinycc-07614b5e22073cbb2c1b298ab906d57372619604.tar.bz2 | |
clean '\t'
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/tcctest.c | 28 |
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); */ } |
