- Oct 30, 2009
-
-
John Thompson authored
llvm-svn: 85589
-
- Oct 18, 2009
-
-
Daniel Dunbar authored
llvm-svn: 84436
-
- Sep 09, 2009
-
-
Mike Stump authored
llvm-svn: 81346
-
- Jul 13, 2009
-
-
Daniel Dunbar authored
llvm-svn: 75517
-
- May 25, 2009
-
-
Chris Lattner authored
1. When we accept "#garbage" in asm-with-cpp mode, change the token kind of the # to unknown so that the preprocessor won't try to process it as a real #. This fixes a crash on the attached example 2. Fix macro definition extents processing to handle #foo at the end of a macro to say the definition ends with the foo, not the #. This is a follow-on fix to r72283, and rdar://6916026 llvm-svn: 72388
-
- May 22, 2009
-
-
Daniel Dunbar authored
non-argument names, pass the tokens through. llvm-svn: 72283
-
- May 21, 2009
-
-
Jay Foad authored
llvm-svn: 72210
-
- Apr 21, 2009
-
-
Chris Lattner authored
patch by Alexei Svitkine! llvm-svn: 69659
-
Chris Lattner authored
Alexei Svitkine! llvm-svn: 69656
-
- Apr 19, 2009
-
-
Chris Lattner authored
in a function-like macro body. This has the added bonus of moving some function-like macro specific code out of the object-like macro codepath. llvm-svn: 69530
-
- Apr 18, 2009
-
-
Chris Lattner authored
as decimal, even if it starts with 0. Also, since things like 0x1 are completely illegal, don't even bother using numericliteralparser for them. llvm-svn: 69454
-
Chris Lattner authored
llvm-svn: 69422
-
Chris Lattner authored
llvm-svn: 69415
-
Chris Lattner authored
llvm-svn: 69413
-
Chris Lattner authored
on the code. llvm-svn: 69404
-
Chris Lattner authored
llvm-svn: 69403
-
Chris Lattner authored
llvm-svn: 69401
-
- Apr 14, 2009
-
-
Chris Lattner authored
t.c:3:8: warning: extra tokens at end of #endif directive #endif foo ^ // Don't do this in strict-C89 mode because bcpl comments aren't valid there, and it is too much trouble to analyze whether C block comments are safe. llvm-svn: 69024
-
Chris Lattner authored
Warning to properly report that it is an import/include_next instead of claiming it is a #include. llvm-svn: 69023
-
- Apr 13, 2009
-
-
Daniel Dunbar authored
- Ted, please check. - Missing test case because PTH won't reliably cache the tokens in a test case. *cough* llvm-svn: 68966
-
- Apr 12, 2009
-
-
Chris Lattner authored
llvm-svn: 68883
-
- Apr 08, 2009
-
-
Chris Lattner authored
llvm-svn: 68640
-
Chris Lattner authored
predefines buffer. llvm-svn: 68627
-
Chris Lattner authored
-include, but that will be fixed soon. llvm-svn: 68625
-
- Mar 27, 2009
-
-
Chris Lattner authored
llvm-svn: 67854
-
- Mar 18, 2009
-
-
Chris Lattner authored
and the token after the # should be expanded if it is not a valid directive. This allows us to transform things like: #define FOO BAR # FOO into # BAR, even though FOO is not normally expanded for directives. This should fix PR3833 llvm-svn: 67236
-
Chris Lattner authored
# 4 llvm-svn: 67233
-
- Mar 13, 2009
-
-
Chris Lattner authored
llvm-svn: 66954
-
- Mar 06, 2009
-
-
Chris Lattner authored
llvm-svn: 66246
-
- Feb 20, 2009
-
-
Chris Lattner authored
to being allocated from the same bumpptr that the MacroInfo objects themselves are. This speeds up -Eonly cocoa.h pth by ~4%, fsyntax-only is barely measurable. llvm-svn: 65195
-
Chris Lattner authored
llvm-svn: 65187
-
Chris Lattner authored
llvm-svn: 65179
-
- Feb 04, 2009
-
-
Chris Lattner authored
buffer as if the #include happened from the main file. llvm-svn: 63764
-
Chris Lattner authored
line markers, including maintenance of the virtual include stack. For something like this: # 42 "bar.c" 1 # 142 "bar2.c" 1 #warning zappa # 92 "bar.c" 2 #warning gonzo # 102 "foo.c" 2 #warning bonkta we now produce these three warnings: #1: In file included from foo.c:3: In file included from bar.c:42: bar2.c:143:2: warning: #warning zappa #warning zappa ^ #2: In file included from foo.c:3: bar.c:92:2: warning: #warning gonzo #warning gonzo ^ #3: foo.c:102:2: warning: #warning bonkta #warning bonkta ^ llvm-svn: 63722
-
Chris Lattner authored
ignoring include stack push/pop info though. llvm-svn: 63719
-
- Feb 03, 2009
-
-
Chris Lattner authored
llvm-svn: 63667
-
- Jan 29, 2009
-
-
Chris Lattner authored
redundant #includes. Patch by Anders Johnsen! llvm-svn: 63271
-
- Jan 27, 2009
-
-
Chris Lattner authored
.def file for each library. This means that adding a diagnostic to sema doesn't require all the other libraries to be rebuilt. Patch by Anders Johnsen! llvm-svn: 63111
-
Chris Lattner authored
llvm-svn: 63094
-
- Jan 26, 2009
-
-
Chris Lattner authored
instantiation history in an effort to speed up c99-intconst-1.c. Now that multiple nested instantiations are allowed, we just make them and don't pay the cost of lookups. With the other changes that went in before this, reverting this is actually a speedup for c99-intconst-1.c, speeding it up from 1.96s to 1.80s, and preserves much better loc info. llvm-svn: 63036
-