2008-11-18 |
Chris Lattner | Remove the last of the old-style Preprocessor::Diag... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Fariborz Jahanian | Generate objc_read_weak for __weak objc loads. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Fariborz Jahanian | Some basic support toward objective-c's GC code gen. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Steve Naroff | Fix <rdar://problem/6329769> [sema] crash on duplicatio... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Torok Edwin | remove this testcase, it fails with -verify still |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Nuno Lopes | fix test. it now crashes, but thats another problem.. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Daniel Dunbar | Add some quick notes on the clang tests and running... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Daniel Dunbar | Input files should be before link options. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Torok Edwin | add testcase for PR3093 |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | don't dereference a null pointer |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Douglas Gregor | As threatened previously: consolidate name lookup and... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Douglas Gregor | Extend DeclarationName to support C++ overloaded operat... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Zhongxing Xu | Fix 80-col violation. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Zhongxing Xu | Add test cast for struct array. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Zhongxing Xu | handle the case that the array element is of structure... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | remove one more Preprocessor::Diag method. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | Convert the lexer and start converting the PP over... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | remove the last couple obsolete forms of Parser::Diag. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | Change a couple of the Parser::Diag methods to return... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | The 'return Diag(...)' idiom should be treated as retur... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | Give DiagnosticInfo a real copy constructor, even though it |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | alphabeticalize. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Ted Kremenek | Updated checker build. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | This reworks some of the Diagnostic interfaces a bit... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Ted Kremenek | Attribute nonnull can be applied to block pointers. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | SourceManager::getLineNumber is logically const except... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | eliminate dependence of strange "Diagnostic::Report... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | remove a helper method with only one call site. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | Change the diagnostics interface to take an array of... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | cleanups. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | sort files. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | cleanups and simplifications. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Ted Kremenek | Preprocessor::PushIncludeMacroStack() should always... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Ted Kremenek | - Add Lexer::isPragma() accessor for clients of Lexer... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | minor cleanups and tidying, no functionality change. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | implement a fixme by making warnings for ++/-- on non... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Chris Lattner | factor some code out into a helper function |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Ted Kremenek | Replace more uses of 'CurLexer->' with 'CurPPLexer... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Ted Kremenek | Add hooks to use PTHLexer::Lex instead of Lexer::Lex... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Ted Kremenek | Update Xcode project. |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Ted Kremenek | Added conditional guard 'if (CurLexer)' when using... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Ted Kremenek | Change a bunch of uses of 'CurLexer->' to 'CurPPLexer... |
commit | commitdiff | tree | snapshot |
2008-11-18 |
Ted Kremenek | - Add 'CurPPLexer' to Preprocessor to keep track of... |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Sebastian Redl | Implement effects of 'mutable', and a few comments... |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Douglas Gregor | Eliminate all of the placeholder identifiers used for... |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Ted Kremenek | Fold assertion into second valid else branch. This... |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Steve Naroff | Fix <rdar://problem/6333904> [sema] message lookup... |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Douglas Gregor | Only test test/CodeGenObjC/synchronized.m as a i686... |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Douglas Gregor | Updated IdentifierResolver to deal with DeclarationName... |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Chris Lattner | Implement rdar://6319320: give a good diagnostic for... |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Steve Naroff | Fix <rdar://problem/6316324> [sema] spurious warning... |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Ted Kremenek | Updated checker build. |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Fariborz Jahanian | Test case for objective-c's @synchronized statement. |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Douglas Gregor | Add TODO item for adding more source-range information... |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Steve Naroff | Fix <rdar://problem/6320086> parser rejects block captu... |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Douglas Gregor | Some cleanups for C++ operator overloading |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Douglas Gregor | Simplify error messages for two-parameter overloaded... |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Douglas Gregor | Introduction the DeclarationName class, as a single... |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Chris Lattner | pad header out to 80 cols |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Chris Lattner | add OperatorKinds.* to the project. |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Chris Lattner | line up some columns, no functionality change. |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Eli Friedman | A few corrections to the expr constant work. Not enable... |
commit | commitdiff | tree | snapshot |
2008-11-17 |
Anders Carlsson | More expr constant work. (Off by default). |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Anders Carlsson | Address some comments Eli had. |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Nuno Lopes | use HandleConversionToBool() to check if a given cond... |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Anders Carlsson | More complex float evaluator support. |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Chris Lattner | Describe how constant folding and i-c-e diagnosing... |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Chris Lattner | rename Expr::tryEvaluate to Expr::Evaluate. |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Anders Carlsson | Add very limited support for evaluating complex floats. |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Chris Lattner | Trivial tidying |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Chris Lattner | add PTHLexer.h to project |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Nuno Lopes | fix folding of comma if given a non-constant operand. |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Nuno Lopes | make IntExprEvaluator fold the ?: operator |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Anders Carlsson | More work on the constant evaluator. Eli, it would... |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Chris Lattner | Fix PR3075, __builtin_stdarg_start being misprototyped... |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Chris Lattner | Fix PR3077: tokens that come from macro expansions... |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Zhongxing Xu | add targe triple commandline option to fix test failure... |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Chris Lattner | add dump and print methods, add operator<< for APValue. |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Chris Lattner | move some APValue methods out of line. |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Anders Carlsson | Add the ability to evaluate comparison operators with... |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Zhongxing Xu | Enhance modularization: return a <state,loc> pair to... |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Anders Carlsson | More constant expr work. |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Chris Lattner | daniel prefers completed thoughts. |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Zhongxing Xu | Re-enable array-struct test. |
commit | commitdiff | tree | snapshot |
2008-11-16 |
Zhongxing Xu | Enhances SCA to process untyped region to typed region... |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Chris Lattner | Start implementing support for @synchonized with the... |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Anders Carlsson | Check in code that uses tryEvaluate for emitting consta... |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Anders Carlsson | Handle padding in the constant CFString struct. Fixes... |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Anders Carlsson | Use IgnoreParenCasts. No functionality change. |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Zhongxing Xu | Use the allocator of ExplodedGraph. The whole static... |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Anders Carlsson | Fix silly bug spotted by Daniel Dunbar |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Zhongxing Xu | Improve zero value generation. |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Zhongxing Xu | Add isUnsigned option. |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Ted Kremenek | Reduce permissiveness of assertion. |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Ted Kremenek | Updated checker build. |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Ted Kremenek | Add a test case for compound assignments that lazily... |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Ted Kremenek | Reverted part of r59335: http://lists.cs.uiuc.edu/piper... |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Ted Kremenek | Re-enable an assertion that I mistakenly removed. |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Anders Carlsson | Handle complex return values. |
commit | commitdiff | tree | snapshot |
2008-11-15 |
Ted Kremenek | Use the correct QualType when creating the '0' constant. |
commit | commitdiff | tree | snapshot |
next |