commit | 9c56ec86b2566836514a99ba5d778733ec394e6a | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Fri Feb 26 19:42:53 2010 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Fri Feb 26 19:42:53 2010 +0000 |
tree | ad59cc672dbc4af2496f36bb7a6f85a324411a8e | |
parent | 3e7df345c8ef8b4e1bde6557ae1bcfb3c37e017f [diff] [blame] |
fix rdar://7683173, rejecting an invalid conditional llvm-svn: 97253
diff --git a/clang/lib/Lex/PPExpressions.cpp b/clang/lib/Lex/PPExpressions.cpp index 2a6b2a7..3b620d0 100644 --- a/clang/lib/Lex/PPExpressions.cpp +++ b/clang/lib/Lex/PPExpressions.cpp
@@ -106,7 +106,7 @@ // Consume identifier. Result.setEnd(PeekTok.getLocation()); - PP.LexNonComment(PeekTok); + PP.LexUnexpandedToken(PeekTok); // If we are in parens, ensure we have a trailing ). if (LParenLoc.isValid()) {