- 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
- 0133f52 Basic code completion support for the base and member initializers in by Douglas Gregor · 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
- e41f985 Comment and move another ASTReader member. by Sebastian Redl · 14 years ago
- e361c63 Update comment after Chandler's change. by Sebastian Redl · 14 years ago
- 757c600 Miscellaneous found by inspection with John and Sebastian by Douglas Gregor · 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
- aaca011 Remove an assertion in UnreachableCodeChecker that can be triggered by bugs in other checkers. by Tom Care · 14 years ago
- d8421ed Fix bug in IdempotentOperationChecker where an assumption would not get updated properly. by Tom Care · 14 years ago
- 5add754 handle :: in selectors in objc++ mode, rdar://8366474 by Chris Lattner · 14 years ago
- ec49bf4 Add alternate version of LiveVariables analysis that does not kill liveness at assignments. This 'relaxed' liveness is useful in path sensitive analysis for situations where the resulting extended liveness allows us to find some bugs. by Tom Care · 14 years ago
- 585b318 Add source file I meant to include in my previous commit. by Ted Kremenek · 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
- ad72f4d Fix copy-paste in doxygen comment. by Ted Kremenek · 14 years ago
- f696152 Implement the "call super" code completion for C++. If the virtual by Douglas Gregor · 14 years ago
- df46316 Teach clang_codeComplete to always sort its code-completion results by Douglas Gregor · 14 years ago
- 551f37c fix incorrect MM_HINT_ definitions, PR8011 by Chris Lattner · 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
- 06b6c58 Add the new alignment arguments for NEON load/store intrinsics, based on the by Bob Wilson · 14 years ago
- f155dfa createMainFileID doesn't need its IncludePos argument, since by Dan Gohman · 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
- b1e0353 Fix CMake dependencies, from Fernando Pelliccioni! by Douglas Gregor · 14 years ago
- 9c72c60 Propagate whether an id-expression is the immediate argument of by John McCall · 14 years ago
- df1367a Don't recurse twice when we can recurse once by Douglas Gregor · 14 years ago
- f312b1e One who seeks knowledge learns something new every day. 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
- 4127117 Remove redundant cast<...>. by Ted Kremenek · 14 years ago
- 3f86b78 Fix a typo. by Dan Gohman · 14 years ago
- 7b73350 improve comments. by Chris Lattner · 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
- f164b6e clang.xcodeproj updated. by Fariborz Jahanian · 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
- 38a4ffe Work around a gcc warning. by John McCall · 14 years ago
- e7ab92e Fix miscompilation. The cookie was not used when new'ing arrays with multiple dimensions. by Argyrios Kyrtzidis · 14 years ago
- f0a5d6f clang-interpreter: libFrontend depends on libSerialization. Fix linux build by changing the link order. by Benjamin Kramer · 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
- 0ca08af mark boost's tracking bug as fixed by Gabor Greif · 14 years ago
- 043266b Tweak wording in an assertion, from dawn@burble.org. by Douglas Gregor · 14 years ago
- 06b901b Update clang-interpreter for recent DiagnosticClient ownership changes. by Benjamin Kramer · 14 years ago
- 1e5e668 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
- f29815a Missed a couple. by John McCall · 14 years ago
- 6d9496d Apparently gcc doesn't always get injected class names right. by John McCall · 14 years ago
- ea31864 Move things around so that Sema.h no longer depends on even DeclBase.h. by John McCall · 14 years ago
- a8b7a7d tame an assertion, fixing rdar://8357396 by Chris Lattner · 14 years ago
- 77c0590 CGValue: Increase width of allowed alignment. We could switch to log2, but we by Daniel Dunbar · 14 years ago
- 1cb237f Revert r112149, "Move the sorting of code-completion results out of the main by Daniel Dunbar · 14 years ago
- 12f740f Revert r112154, "Fix thinko in sorting operation", it depends on r112149 which by Daniel Dunbar · 14 years ago
- a958422 Tweak test to avoid checking for a specific ordering where none exists by Douglas Gregor · 14 years ago
- d931b08 De-memberify the VarDecl and FunctionDecl StorageClass enums. by John McCall · 14 years ago
- 86d0065 Fix thinko in sorting operation by Douglas Gregor · 14 years ago
- afbf5f8 Fix a typo. by Dan Gohman · 14 years ago
- be13afe Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
- 9c3087b Restore r112114 now that SmallVector<...,0> is safe. by John McCall · 14 years ago
- faf9404 Move some type defines from smmintrin.h to emmintrin.h to match where by Eric Christopher · 14 years ago
- 95f3355 Add libclang API hook "clang_getIBOutletCollectionType" to query the collection type for iboutletcollection attributes. by Ted Kremenek · 14 years ago
- 2dc70ad Driver/Darwin: Switch back to old toolchain, looks like new one isn't quite by Daniel Dunbar · 14 years ago
- c460889 zap dead ctor by Chris Lattner · 14 years ago
- e361cc3 IRgen/NEON: Fix codegen of vzip and vzipq. by Daniel Dunbar · 14 years ago
- 5edbd23 Driver: Fix thinko where I switched to always using the old toolchain, instead by Daniel Dunbar · 14 years ago
- 3a0e392 Driver/Darwin: Pass the right arch specific dir for ARM, when linking. by Daniel Dunbar · 14 years ago
- 0ad106f Revert r112114, "Pull DelayedDiagnostic and AccessedEntity out into their own by Daniel Dunbar · 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
- 0ad8b46 Add DelayedDiagnostic.h to xcode project file. by Fariborz Jahanian · 14 years ago
- 930c133 More update of clang.xcodeproj for recent changes. by Fariborz Jahanian · 14 years ago
- 5ad502f Update clang.xcodeproj for recent refactorings. by Fariborz Jahanian · 14 years ago
- 0f93758 Fix typo in error message and testcase. by Eric Christopher · 14 years ago
- 6790634 Pull DelayedDiagnostic and AccessedEntity out into their own header. by John McCall · 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
- 916d054 Add missing null checks in PseudoConstantAnalysis by Tom Care · 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
- 2d88708 Split out a header to hold APIs meant for the Sema implementation from Sema.h. by John McCall · 14 years ago
- 4710a8e Fix a typo. by Dan Gohman · 14 years ago
- 721f359 When combining the code-completion results from Sema long with the by Douglas Gregor · 14 years ago
- 8bea82f Fix horrible white space errors. by Michael J. Spencer · 14 years ago
- c1a3e5e Initialize the translation-unit scope before lexing the first by Douglas Gregor · 14 years ago
- 59a6694 Add a missing case by Douglas Gregor · 14 years ago
- c9c29a8 Fix an off-by-one error when computing the precompiled preamble for by Douglas Gregor · 14 years ago
- 4125c37 Make the cursor kind of macro-name-only completions produced by by Douglas Gregor · 14 years ago
- 938e5a1 Robustify test. by Devang Patel · 14 years ago