summaryrefslogtreecommitdiffstats
path: root/clang/test/Preprocessor/macro_expand_empty.c
Commit message (Collapse)AuthorAgeFilesLines
* If preprocessing results in a token with leading whitespace that was expandedRichard Smith2014-02-241-1/+1
| | | | | | | from a macro in column 0, ensure that we print whitespace before it in the -E output. Patch by Harald van Dijk! llvm-svn: 202070
* If the first token in a macro that appears at the start of a line expands toRichard Smith2014-02-241-1/+8
| | | | | | | nothing, be sure to inform the *next* token expanded from the macro that it is now at the start of a line. Patch by Harald van Dijk! llvm-svn: 202068
* Make Preprocessor::Lex non-recursive.Eli Friedman2013-09-191-0/+14
Before this patch, Lex() would recurse whenever the current lexer changed (e.g. upon entry into a macro). This patch turns the recursion into a loop: the various lex routines now don't return a token when the current lexer changes, and at the top level Preprocessor::Lex() now loops until it finds a token. Normally, the recursion wouldn't end up being very deep, but the recursion depth can explode in edge cases like a bunch of consecutive macros which expand to nothing (like in the testcase test/Preprocessor/macro_expand_empty.c in this patch). <rdar://problem/14569770> llvm-svn: 190980
OpenPOWER on IntegriCloud