- 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
- 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
- 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
- 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
- 458433d Implement code completion for @selector expressions by Douglas Gregor · 14 years ago
- 043266b Tweak wording in an assertion, from dawn@burble.org. 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
- 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
- d931b08 De-memberify the VarDecl and FunctionDecl StorageClass enums. by John McCall · 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
- 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
- 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
- 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
- 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
- af1c6b5 Add a code-completion context for "natural language" completions, so by Douglas Gregor · 14 years ago
- 55817af Introduce a preprocessor code-completion hook for contexts where we by Douglas Gregor · 14 years ago
- 2de56d1 GCC didn't care for my attempt at API compatibility, so brute-force everything by John McCall · 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
- 5baba9d More incremental progress towards not including Expr.h in Sema.h. by John McCall · 14 years ago
- f869d20 Make sure volatile variables are emitted even if static. Fixes rdar://8315219 by Argyrios Kyrtzidis · 14 years ago
- 62c78d5 Rename *PendingImplicitInstantiations to *PendingInstantiations. No by Chandler Carruth · 14 years ago
- 781472f Split FunctionScopeInfo and BlockScopeInfo into their own header. by John McCall · 14 years ago
- 58e390e Support explicit instantiation of function templates and members of class by Chandler Carruth · 14 years ago
- 384aff8 Remove Sema.h's dependency on DeclCXX.h. by John McCall · 14 years ago
- 50df6ae Remove the DenseSet dependency from Sema.h. by John McCall · 14 years ago
- 0a2c5e2 Teach Sema to live without CodeCompleteConsumer.h. by John McCall · 14 years ago
- e0054f6 Remove AnalysisBasedWarnings.h's dependency on Type.h by John McCall · 14 years ago
- 2a7fb27 Move more stuff out of Sema.h. by John McCall · 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
- 911093e Reformatting. by John McCall · 14 years ago
- 408be5a When performing completions involving Objective-C method declarations by Douglas Gregor · 14 years ago
- 42f81e6 Plug leak. The DenseMaps of CXXRecordLayoutInfo weren't freed. by Argyrios Kyrtzidis · 14 years ago
- cfe17e5 Use a smart pointer instead of delete. by Argyrios Kyrtzidis · 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
- c988fab Catch the case of trying to turn '&(X::a)' into a member pointer as well. by John McCall · 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
- 6e50e00 AST reader support for having specializations of templates from earlier in the chain. by Sebastian Redl · 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
- 23637be correct the -isystem option to not add the -isysroot path. Only the weird by Chris Lattner · 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
- 9db9ad3 Implement -iwithsysroot, an apple extension which is a close cousin of -isystem. by Chris Lattner · 14 years ago
- ef52bcb Improvements to IdempotentOperationChecker and its use of PseudoConstantAnalysis by Tom Care · 14 years ago
- 120d63c Move some of SemaOverload's API to various places in Overload.h, and kill by John McCall · 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
- ffc52e7 Fix enum size and align. Tested by setvar.exp in gdb testsuite. by Devang Patel · 14 years ago
- 19f1983 Debug Info: Put full Clang version into the debug info, to make it easier to by Daniel Dunbar · 14 years ago
- aab0132 Sema doesn't need these STL headers. by John McCall · 14 years ago
- ca0e054 Driver/Clang: Forward -Wa, and -Xassembler to clang -cc1 when using the by Daniel Dunbar · 14 years ago
- 83482d1 When providing completions for a function or method argument that by Douglas Gregor · 14 years ago