- d527874 suppress annoying textual repetition as 'aka' by Gabor Greif · 14 years ago
- 326c8c7 That's not the right direction to compute notional accessibility in at all. by John McCall · 14 years ago
- 8c77bcb When checking access control for an instance member access on by John McCall · 14 years ago
- aaafddb check whether sema issues a redefinition error by Gabor Greif · 14 years ago
- bb452e9 note to self: save before committing; add PR by Gabor Greif · 14 years ago
- 19de06b fix test by applying it in top namespace: PR8007 only showed up this way by Gabor Greif · 14 years ago
- 2c1b9c3 Update test case, with comment to later investigate the correct behavior. Now the behavior is at least consistent. by Ted Kremenek · 14 years ago
- 47e331e Explicitly handle CXXExprWithTemporaries during CFG construction by just visiting the subexpression. While we don't do anything intelligent right now, this obviates a bogus -Wunreahable-code warning reported in PR 6130. by Ted Kremenek · 14 years ago
- 40181c4 fix PR8007 by Gabor Greif · 14 years ago
- c620ace reproduction recipe for PR8007, expected to fail for now, review welcome by Gabor Greif · 14 years ago
- d078e64 Parser support for inline namespaces by Sebastian Redl · 14 years ago
- 9edd4d0 Added checking of (x == x) and (x != x) to IdempotentOperationChecker and updated test cases flagged by it. by Tom Care · 14 years ago
- 6d0e6ce Enabled relaxed LiveVariables analysis in the path-sensitive engine to increase the coverage of bugs. Primarily affects IdempotentOperationChecker. by Tom Care · 14 years ago
- 5add754 handle :: in selectors in objc++ mode, rdar://8366474 by Chris Lattner · 14 years ago
- 520441e Improve wording of diagnostic complaining about a non-void* pointer as the first parameter of operator delete by Douglas Gregor · 14 years ago
- 3064ef9 Implement CXCursor support for walking C++ base specifiers. This includes adding the API hooks clang_isVirtualBase() and clang_getCXXAccessSpecifier() to query properties of the base specifier. by Ted Kremenek · 14 years ago
- f696152 Implement the "call super" code completion for C++. If the virtual by Douglas Gregor · 14 years ago
- 7114cba Continue to instantiate sub-statements in a CompoundStmt as long as by John McCall · 14 years ago
- 2ed8f00 Debug info for friends! Patch originally by Alexander Herz. by Devang Patel · 14 years ago
- 1a480c4 Suggest "const" and "volatile" code completions after a function by Douglas Gregor · 14 years ago
- 265f749 When code-completing inside an Objective-C method, give a slight by Douglas Gregor · 14 years ago
- 03d8aec Add a super-cool code completion for send-to-super. When we're typing by Douglas Gregor · 14 years ago
- 9c72c60 Propagate whether an id-expression is the immediate argument of by John McCall · 14 years ago
- 468e8fb test case for r112238. by Devang Patel · 14 years ago
- 34feff6 Fix horrible GRExprEngine bug where switch statements with no 'case:' statements would cause the path to get prematurely aborted. Fixes <rdar://problem/8360854>. by Ted Kremenek · 14 years ago
- 2e29a99 add radar # by Chris Lattner · 14 years ago
- bbae8b4 fix 2xi16 to pass as i32 instead of <2 x i16>. The former passes in by Chris Lattner · 14 years ago
- 0fefa41 vector of long and ulong are also classified as INTEGER in x86-64 abi, by Chris Lattner · 14 years ago
- 473f8e7 1 x ulonglong needs to be classified as INTEGER, just like 1 x longlong, by Chris Lattner · 14 years ago
- cebc376 ...I forgot to check my new test after adding it, and lo, there's slightly different by John McCall · 14 years ago
- 9e46b8c Make sure we clear TypeSpecOwned when setting TypeSpecType to something when by John McCall · 14 years ago
- 2d9e21f Tweak the @selector completion to collapse multiple informative and by Douglas Gregor · 14 years ago
- 3cdee12 When code-completing a potential call to a C++ non-static member by Douglas Gregor · 14 years ago
- e7ab92e Fix miscompilation. The cookie was not used when new'ing arrays with multiple dimensions. by Argyrios Kyrtzidis · 14 years ago
- 458433d Implement code completion for @selector expressions by Douglas Gregor · 14 years ago
- 9a2d44c More ordering tweaks in this silly, silly test by Douglas Gregor · 14 years ago
- 1e5e668 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
- a8b7a7d tame an assertion, fixing rdar://8357396 by Chris Lattner · 14 years ago
- a958422 Tweak test to avoid checking for a specific ordering where none exists by Douglas Gregor · 14 years ago
- 95f3355 Add libclang API hook "clang_getIBOutletCollectionType" to query the collection type for iboutletcollection attributes. by Ted Kremenek · 14 years ago
- e84f9eb With lax vector conversions (the default) make sure we convert between two by Eric Christopher · 14 years ago
- 9214819 Revert "Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
- 0f93758 Fix typo in error message and testcase. by Eric Christopher · 14 years ago
- 8028bfa Revert r112043, static volatiles are removed by the optimizer. Thanks Chris! by Argyrios Kyrtzidis · 14 years ago
- 22fd4ba Finally pass "two floats in a 64-bit unit" as a <2 x float> instead of by Chris Lattner · 14 years ago
- d293298 Fix miscompilation. The custom new[]/delete[] methods were not getting called for arrays with more than 1 dimension. by Argyrios Kyrtzidis · 14 years ago
- 967fea6 Improved the handling of blocks and block variables in PseudoConstantAnalysis by Tom Care · 14 years ago
- 141a4d4 Fix RUN line in test. by Ted Kremenek · 14 years ago
- d8b0a84 When annotating tokens, don't fallback to annotating with a null cursor for cursors that come before a macro instantiation. Fixes <rdar://problem/7974151>. by Ted Kremenek · 14 years ago
- c7ed372 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
- 721f359 When combining the code-completion results from Sema long with the by Douglas Gregor · 14 years ago
- 938e5a1 Robustify test. by Devang Patel · 14 years ago
- 44f57f0 Test for previous commit by Douglas Gregor · 14 years ago
- 55817af Introduce a preprocessor code-completion hook for contexts where we by Douglas Gregor · 14 years ago
- 1e32ca6 Implement __builtin_printf, __builtin_fprintf. Fixes <rdar://problem/8336581>. by Douglas Gregor · 14 years ago
- 58b5259 Recursive functions should be marked when used from another function. Fixes http://llvm.org/PR7923. by Argyrios Kyrtzidis · 14 years ago
- f869d20 Make sure volatile variables are emitted even if static. Fixes rdar://8315219 by Argyrios Kyrtzidis · 14 years ago
- 58e390e Support explicit instantiation of function templates and members of class by Chandler Carruth · 14 years ago
- 33eaddd tests: Disable this test for now, it is overly pessimistic and I am not sure how to fix it. by Daniel Dunbar · 14 years ago
- 89f176d IRgen: Fix a horrible bug in pointer to bool conversion, which we were treating by Daniel Dunbar · 14 years ago
- a8f28da Expression statements undergo lvalue-to-rvalue conversion in C, by John McCall · 14 years ago
- 408be5a When performing completions involving Objective-C method declarations by Douglas Gregor · 14 years ago
- 95f1b86 No need to default synthesize property if implementation by Fariborz Jahanian · 14 years ago
- 0554e0e Fix 'for' loop variables' scope. by Devang Patel · 14 years ago
- eb0d014 Give a slight preference to functions returning "void" when we're by Douglas Gregor · 14 years ago
- 124300e Preserve invalidity of typeof operands in C++. by John McCall · 14 years ago
- d43dd83 In code-completion contexts where both types and other values are by Douglas Gregor · 14 years ago
- c988fab Catch the case of trying to turn '&(X::a)' into a member pointer as well. by John McCall · 14 years ago
- 28a7f25 USRs for class extensions should "mangle" in the location of the extension. (<rdar://problem/8350262>) by Ted Kremenek · 14 years ago
- 957355e Move the test for radar 8018252 to SemaCXX/expressions.cpp. by Fariborz Jahanian · 14 years ago
- fb97e75 When trying to resolve the address of an overloaded expression, by John McCall · 14 years ago
- 4153a06 AST writer support for having specializations of templates from earlier in the chain. This ought to finish C++ chained PCH support. by Sebastian Redl · 14 years ago
- ecbd4a8 Remove i386 macro check from expected output of preprocessor by Douglas Gregor · 14 years ago
- f7c16d9 Frontend: Add basic -H support. by Daniel Dunbar · 14 years ago
- 545be51 Add some missing X86-specific asm constraint letters, and fix by Dale Johannesen · 14 years ago
- 9325eaf Fix printf format string checking for '%lc' (which expects a wint_t or compatible argument). Fixes PR 7981. by Ted Kremenek · 14 years ago
- 4020f87 It is not error in c++ to take address of by Fariborz Jahanian · 14 years ago
- f29c523 Implement code completion for preprocessor expressions and in macro arguments. by Douglas Gregor · 14 years ago
- db91864 tests: Use REQUIRES: instead of XFAIL: for crash recovery tests; running them on by Daniel Dunbar · 14 years ago
- ef52bcb Improvements to IdempotentOperationChecker and its use of PseudoConstantAnalysis by Tom Care · 14 years ago
- 1fbb447 Implement preprocessor code completion where a macro name is expected, by Douglas Gregor · 14 years ago
- f44e854 Introduce basic code-completion support for preprocessor directives, by Douglas Gregor · 14 years ago
- cdaa6a8 Fix a bug in nonfragile-abi2 when attempting to diagnose by Fariborz Jahanian · 14 years ago
- 83482d1 When providing completions for a function or method argument that by Douglas Gregor · 14 years ago
- 09a63c9 Parse all kinds of declarations as part of a linkage-specification, by Douglas Gregor · 14 years ago
- 3a91abf Diagnose the presence of multiple initializations of static data by Douglas Gregor · 14 years ago
- fb3bb31 PR7971: Compute the correct type for an address-of expression containing an by Eli Friedman · 14 years ago
- d32b022 Provide code completion results for the context-sensitive Objective-C by Douglas Gregor · 14 years ago
- 5967d62 Add testcase for C++ chained PCH and fix the bugs it uncovered in name lookup. by Sebastian Redl · 14 years ago
- aaa107a When calling a function or messaging a method marked "sentinel", add by Douglas Gregor · 14 years ago
- 58ddb60 Introduce new libclang API functions that determine the availability by Douglas Gregor · 14 years ago
- 6237cea Emit debug info for enum constants. by Devang Patel · 14 years ago
- aa5f77b Include __FUNCTION__, __PRETTY_FUNCTION_, __func__ in code-completion by Douglas Gregor · 14 years ago
- fb62941 Introduce a code-completion hook for the Objective-C collection by Douglas Gregor · 14 years ago
- 673745f Driver/Darwin: Switch to using simplified tool chain by default -- what better by Daniel Dunbar · 14 years ago
- 8238941 Modified pseudoconstant test case to make it a bit clearer and fix a missing line by Tom Care · 14 years ago
- db34ab7 Several small changes to PseudoConstantAnalysis and the way IdempotentOperationChecker uses it. by Tom Care · 14 years ago
- 000835d Support for IRGen of synthesize bitfield ivars in by Fariborz Jahanian · 14 years ago
- e5848d6 test case for PR7920. by Devang Patel · 14 years ago
- 2ccccb3 Introduce a new code-completion point when we're parsing a by Douglas Gregor · 14 years ago