- adc0185 Forgot a return stmt (oops). by Steve Naroff · 17 years ago
- dfa6aae by Steve Naroff · 17 years ago
- 82c7e6d - Fix commit in Parser.h (patch by Kevin Andre). by Steve Naroff · 17 years ago
- e80a59c Fix a couple of bugs, add some new cool stuff. by Chris Lattner · 17 years ago
- 700204c by Steve Naroff · 17 years ago
- 9572a5f add documentation skeleton by Chris Lattner · 17 years ago
- 706c99a add a bare bones web page by Chris Lattner · 17 years ago
- 012cf46 Fix a comment, patch by Kevin Andre! by Chris Lattner · 17 years ago
- ab18c4c implement ast building and trivial semantic analysis of stmt exprs. by Chris Lattner · 17 years ago
- 5143196 avoid std::string yet again. by Chris Lattner · 17 years ago
- d8e3083 Use a smallstring instead of an std::string in FileChanged to avoid some malloc traffic. by Chris Lattner · 17 years ago
- 1cf12bf check in an experiment that didn't work out, to allow for future investigation. by Chris Lattner · 17 years ago
- 5e36a7a Add a cache to SourceManager to accellerate line # lookup. This is a by Chris Lattner · 17 years ago
- b638a30 Fix two paste-avoidance bugs I introduced last night. Patch by Chris Lattner · 17 years ago
- dc0d73e fix bogus warnings about potentially uninit vars Size and Align. by Chris Lattner · 17 years ago
- f11ccfc Fix a scoping bug that apple gcc doesn't catch for some reason. by Chris Lattner · 17 years ago
- 8a87e57 correctly verify that default and case are in a switchstmt, by Chris Lattner · 17 years ago
- f063721 avoid creating std::strings in MoveToLine by Chris Lattner · 17 years ago
- e225e37 In OutputString, avoid calling memcpy for really tiny strings. by Chris Lattner · 17 years ago
- 2933f41 Avoid calling getSpelling at all for identifiers, which are by Chris Lattner · 17 years ago
- f0f2b29 change the concatenation avoidance algorithm to be partially table-driven by Chris Lattner · 17 years ago
- b19f5e8 If a token doesn't need cleaning, we can get its first character by Chris Lattner · 17 years ago
- 822f940 A minor tweak to -E output, speeding up -E 1.5% on 447.dealII by Chris Lattner · 17 years ago
- 706ab50 implement a missing feature in the #include handler, where by Chris Lattner · 17 years ago
- f1c99ac refactor the interface to Preprocessor::GetIncludeFilenameSpelling, by Chris Lattner · 17 years ago
- 0f67032 fix a bug getting the spelling of an identifier token by Chris Lattner · 17 years ago
- 349b42a no need to avoid pasting >* It can't form ->*, because we know the previous by Chris Lattner · 17 years ago
- 94fea5a GCC doesn't set __STDC_VERSION__ usually. It never sets it in by Chris Lattner · 17 years ago
- e36751b Switch TargetInfo::getTargetDefines from using an std::map<std::string, ...> to using by Chris Lattner · 17 years ago
- 448cec4 Change hte lexer to start a start pointer to the underlying by Chris Lattner · 17 years ago
- 409a036 split the slow path out of Lexer::getSourceLocation and do not let the by Chris Lattner · 17 years ago
- 9960ae8 Implement a simple cache in headersearch. This speeds up by Chris Lattner · 17 years ago
- c1fcb77 Refactor switch analysis to make it possible to detect duplicate case values by Anders Carlsson · 17 years ago
- 83769ab remove redundant test by Chris Lattner · 17 years ago
- 0cbc4b5 avoid a small bit of string traffic by not storing the ""'s around a string in CurFilename by Chris Lattner · 17 years ago
- 8133cfc avoid recursion between SkipBCPLComment and SkipWhitespace. In cases like this: by Chris Lattner · 17 years ago
- bd24776 when running in -E mode on multiple files, there is no reason to accumulate by Chris Lattner · 17 years ago
- 95cfb85 Catch goto's with a missing identifier, patch by Neil Booth. by Chris Lattner · 17 years ago
- 9c68306 Fix a really subtle bug in the macro expander caching code, where by Chris Lattner · 17 years ago
- 8146b68 Fix a lexer bug where we incorrectly rejected int i = /*/ */ 1; by Chris Lattner · 17 years ago
- 731ec57 Minor simplification to Expr::isLvalue(). by Steve Naroff · 17 years ago
- d1623a8 Add support for reusing macroid's with negative physical loc deltas. This by Chris Lattner · 17 years ago
- aa4166c implement getSourceRange for ImplicitCast by Chris Lattner · 17 years ago
- 96f1a64 Return an exit code of 1 if errors occur, not an exit code equal to the # errors :) by Chris Lattner · 17 years ago
- cb4f9a6 minor simplifications by Chris Lattner · 17 years ago
- 4fc37c5 testcase from neil by Chris Lattner · 17 years ago
- 78c75fb recover from void argument types more nicely. by Chris Lattner · 17 years ago
- 4565d4e better wording for an error, suggested by Neil. by Chris Lattner · 17 years ago
- 2274266 Implement code generation for __func__, __FUNCTION__ and __PRETTY_FUNCTION__ by Anders Carlsson · 17 years ago
- 2ff5426 improve and simplify error recovery for calls, fix a crash when diagnosing by Chris Lattner · 17 years ago
- eddbe03 fix a warning on some compilers by Chris Lattner · 17 years ago
- a84538e add an evil macro expansion perf test from Neil. by Chris Lattner · 17 years ago
- d472b31 Fix off-by-one error when emitting diagnostics. Also, make diagnostic by Chris Lattner · 17 years ago
- 74c469f move some casts up to the entry of the function for clarity. by Chris Lattner · 17 years ago
- 0fa152e Two fixes: by Chris Lattner · 17 years ago
- 942cfd3 Fix a valgrind error noticed by Benoit Boissinot by Chris Lattner · 17 years ago
- 45011cf remove some old cruft by Chris Lattner · 17 years ago
- b1c2df9 fix a nasty bug Owen noticed in a gcc warning. by Chris Lattner · 17 years ago
- 31bb8be improve comments, implement a trivial single-entry cache in by Chris Lattner · 17 years ago
- 60c3a1b Update project for LexerToken.h -> Token.h by Chris Lattner · 17 years ago
- d217773 At one point there were going to be lexer and parser tokens. by Chris Lattner · 17 years ago
- 25bdb51 simplify the lexer ctor to take a SLoc instead of a sloc and a redundant buffer*. by Chris Lattner · 17 years ago
- 9dc1f53 Reimplement SourceLocation. Instead of having a by Chris Lattner · 17 years ago
- 030d884 implement size/alignment analysis for arrays and vectors. This gets carbon.h working again. by Chris Lattner · 17 years ago
- aff1edd Finish fixing crasher with compound literals. by Steve Naroff · 17 years ago
- 2b64fdc Fix a stringizing bug that Neil noticed. We should preprocess this: by Chris Lattner · 17 years ago
- a87b63b silence a warning by treating ocuvectors the same as vectors. by Chris Lattner · 17 years ago
- 4aa88f8 by Steve Naroff · 17 years ago
- 5265af5 Fix a crasher that Neil reported: Sema::GetTypeForDeclarator should never by Chris Lattner · 17 years ago
- 938867c Make sure to initialize an ivar, patch by Benoit Boissinot. by Chris Lattner · 17 years ago
- 0ea793e Correctly respect C99 5.1.1.2p4 when searching for the first '(' of by Chris Lattner · 17 years ago
- 76e773a implement i-c-e correct evaluation for sizeof/alignof, remove some obsolete fixme's. by Chris Lattner · 17 years ago
- 5d2a630 implement sizeof/alignof support for structs, unions and complex. by Chris Lattner · 17 years ago
- 5e3fbe5 implement codegen support for sizeof/alignof by Chris Lattner · 17 years ago
- 7332292 by Steve Naroff · 17 years ago
- 464175b initial layout support for structures and unions. This isn't actually by Chris Lattner · 17 years ago
- a8fe39e add accessors by Chris Lattner · 17 years ago
- 75af480 Cast to void is valid, patch by Benoit Boissinot by Chris Lattner · 17 years ago
- 6d87fc6 teach -stats about new types by Chris Lattner · 17 years ago
- ce0afc0 add a note Neil pointed out by Chris Lattner · 17 years ago
- 6c36be5 Add initial switch stmt support, patch by Anders Carlsson! by Chris Lattner · 17 years ago
- 67798cb strtod is more portable than strtof apparently. Instead of making this conditional, by Chris Lattner · 17 years ago
- 79cc005 cheap change to fix solaris compilation. I can make this a static inline if desired by Gabor Greif · 17 years ago
- ccb4af8 Use the correct method for getting the ReferenceType from a QualType. by Bill Wendling · 17 years ago
- 9697a5c I forgot to check this in earlier by Chris Lattner · 17 years ago
- 251dcaf Return the correct type from isReferenceType(). by Bill Wendling · 17 years ago
- ea5e79f Change dyn_cast for reference types to be more like pointers and not need the canonical type. Also fix so that we're not expecting a return value from a void function by Bill Wendling · 17 years ago
- 08ad47c Fix references: by Bill Wendling · 17 years ago
- a4332e2 by Steve Naroff · 17 years ago
- 16beff8 by Steve Naroff · 17 years ago
- 3e5e556 by Steve Naroff · 17 years ago
- a2c7767 In the final step for preserving typedef info better in the AST, upgrade by Chris Lattner · 17 years ago
- c80b4ee by Steve Naroff · 17 years ago
- 2682490 Fix a GCC warning: by Chris Lattner · 17 years ago
- da13870 Implement break and continue. Patch by Anders Carlsson! by Chris Lattner · 17 years ago
- f0fbcb3 avoid requiring people to update from llvm svn. by Chris Lattner · 17 years ago
- ca51c97 Constify the is*Lvalue() methods. by Bill Wendling · 17 years ago
- 136f93a Make octal constant lexing use AdvanceToTokenCharacter to give more by Chris Lattner · 17 years ago
- 97ba77c Add a new Preprocessor::AdvanceToTokenCharacter method which, given a sloc by Chris Lattner · 17 years ago
- 20e6ccd add better comments. by Chris Lattner · 17 years ago