- 55f6c33 Test for r168674. by Eli Friedman · 12 years ago
- 6902e41 Fix the definition of the vfork() builtin on Haiku. PR14378. by Eli Friedman · 12 years ago
- c9715fc This patch addresses an incompatibility relative to the 64-bit PowerPC ELF ABI. by Bill Schmidt · 12 years ago
- 3fa3c44 scan-build: Respect TMPDIR on all platforms, not just Darwin (PR14438). by Jordan Rose · 12 years ago
- 6e99f9f [analyzer] Fix test to work on non-LP64 systems. by Jordan Rose · 12 years ago
- ec351f1 Add a testcase that r168411 would break. by Rafael Espindola · 12 years ago
- 8272be5 Revert r168411 for now. by Rafael Espindola · 12 years ago
- 4b98b2b Duplicate some common owners between Clang and LLVM. by Richard Smith · 12 years ago
- f18dd8e Move Clang code owners list from llvm/ to cfe/. by Richard Smith · 12 years ago
- acf3612 Frontend: Create a virtual file for named pipe inputs. by Daniel Dunbar · 12 years ago
- 2e39713 Improve diagnostic on C++11 attribute specifiers that appear at wrong syntactic locations around class specifiers. by Michael Han · 12 years ago
- f582499 Add missing "break". Thanks to Craig for spotting it. by Eli Friedman · 12 years ago
- 9e4bafc check that always_inline attribute works with -fno-inline by Sebastian Pop · 12 years ago
- 7bd51ea [analyzer] SATestBuild.py: allow make builds to disable parallelization by Jordan Rose · 12 years ago
- dac6cd5 [analyzer] Fix a crash reported in PR 14400. by Anna Zaks · 12 years ago
- f419a85 MSPGCC renamed ISR vectors from vector_<address> to __isr_<number>. This patch makes Clang reflect this scheme. by Anton Korobeynikov · 12 years ago
- 79b7cc5 Fix PR14413 - incorrect mangling of anonymous namespaces with -cxx-abi microsoft by Timur Iskhodzhanov · 12 years ago
- 73ed67c PR14428: When instantiating a 'new' expression, if we had a non-dependent by Richard Smith · 12 years ago
- 8dbf697 Add r168519 back, but with a fix to also merge the used flag in variables. by Rafael Espindola · 12 years ago
- 1c80b52 Add a basic testcase for the "variable is not needed" warning and one that by Rafael Espindola · 12 years ago
- 1059653 Fix test case for linking with sanitizer opts added in r168428. by Alexey Samsonov · 12 years ago
- 6df81a9 Revert r168519, "Merge used flags so that we don't have to iterate on isUsed. With this change" by NAKAMURA Takumi · 12 years ago
- f9cb0be Make err_module_expected_semi consistent with all the other expected_semi diags. by Nico Weber · 12 years ago
- 63b6ebe Sema: Provide a valid source location when instantiating templates based on a CXXDefaultArgExpr. by Benjamin Kramer · 12 years ago
- 919b7e6 Merge used flags so that we don't have to iterate on isUsed. With this change by Rafael Espindola · 12 years ago
- 385e1d9 Remove redundant check. by Rafael Espindola · 12 years ago
- 4875bf2 Check that we don't warn on this testcase. This is basically a test that by Rafael Espindola · 12 years ago
- 8548908 PR14306: Move -fbounds-checking to -fsanitize=bounds. by Joey Gouly · 12 years ago
- 66b8a66 Reapply a subset of r167567 to clean up Darwin-specific code for invoking gcc. by Bob Wilson · 12 years ago
- 4d9f4e5 Make helpers static/anonymous. by Benjamin Kramer · 12 years ago
- 746619a Fix regression in r168477. Use canonical decl when looking for base class by Richard Smith · 12 years ago
- f62c690 Fix CXXRecordDecl::forallBases to not look through bases which are dependent by Richard Smith · 12 years ago
- 1a6c43a Test that we correctly deal with multiple copy constructors when detecting by Richard Smith · 12 years ago
- a6b2581 Fix the '-fuse-init-array' option to actually be an option. by Chandler Carruth · 12 years ago
- 39ad0f0 SemaCXX: an enumeral type can be of character or boolean type in a C++11 enum class. Make sure we create a literal of the right type. by Benjamin Kramer · 12 years ago
- 21261f4 Test commit: Remove blank line. by Joey Gouly · 12 years ago
- 803dd9e Try to fix test from r168428 on mingw bot by Alexey Samsonov · 12 years ago
- 3ffa91a clang/test/Driver/x86_64-nacl-defines.cpp: Specify filename generated. by NAKAMURA Takumi · 12 years ago
- 69b77d7 [Sanitizer] force linking with static sanitizer runtimes on Darwin even if they are not found in resource directory. Add test checking sanitizer linker flags on Darwin. by Alexey Samsonov · 12 years ago
- 0061fe4 Use color for -ast-dump-filter only when it is supported by Dmitri Gribenko · 12 years ago
- 16c8cf1 Remove redundant code. by Rafael Espindola · 12 years ago
- 5175861 Remove redundant code. by Rafael Espindola · 12 years ago
- 289994c Don't walk a linked list twice in the same function. On my machine this takes by Rafael Espindola · 12 years ago
- dd85159 Update method calls to the new interface re r168354. by Bill Wendling · 12 years ago
- 0c5d005 Fix some trailing whitespace (on a blank line) to cycle/test bots. by David Blaikie · 12 years ago
- 1a5bd5d PR14381: Never skip constexpr function bodies when code-completing. We may need by Richard Smith · 12 years ago
- 728948f When adding a NamedDecl to a correction, add the underlying Decl (via by Kaelyn Uhrain · 12 years ago
- 529a73d Add -ldl for non-static libgcc in Android. by Logan Chien · 12 years ago
- 18c2842 Enable -fuse-init-array for Android X86/MIPS. by Logan Chien · 12 years ago
- 7a29070 clang/test: Suppress two tests on LLP64 target, Windows x64. by NAKAMURA Takumi · 12 years ago
- 7ce816a Completely re-work how the Clang driver interprets PIC and PIE options. by Chandler Carruth · 12 years ago
- 72511f3 Remove a no-op 'const' from a by-value return type. by Chandler Carruth · 12 years ago
- 86256af RecursiveASTVisitor.h: Rework Doug's r160404, "Eliminating the GCC_CAST hack, take two." by NAKAMURA Takumi · 12 years ago
- 898a7a2 Remove redundant (duplicated) check. by Dmitri Gribenko · 12 years ago
- bf823c0 clang/test/Sema/warn-documentation.cpp: Try to fix up the testcase in r168277. by NAKAMURA Takumi · 12 years ago
- 36cbbe9 Documentation parsing: propely handle a lone '\endverbatim' and emit a warning. by Dmitri Gribenko · 12 years ago
- d9ffa0c Fix Doxygen comment start sequence. by Dmitri Gribenko · 12 years ago
- 6d534d4 Clean up code according to coding standards by Andy Gibbs · 12 years ago
- 5fa6676 objective-C: Do not issue deprecated warning about implementation by Fariborz Jahanian · 12 years ago
- 6d926ae Fix crash on end-of-file after \ in a char literal, fixes PR14369. by Nico Weber · 12 years ago
- 3f03b58 Prevent premature macro expansion in __has_builtin, __has_feature, by Andy Gibbs · 12 years ago
- 97f8461 Made the "expected string literal" diagnostic more expressive by Andy Gibbs · 12 years ago
- 02a1768 Refactored duplicate string literal lexing code within Preprocessor, into a by Andy Gibbs · 12 years ago
- b9971ba Fix handling of invalid uses of the __has_warning builtin macro by Andy Gibbs · 12 years ago
- 7baa711 Enable inlining of 4 byte atomic ops on ppc32, 8 byte atomic ops on ppc64. by Benjamin Kramer · 12 years ago
- 48a7345 Remove copy ctor that provides no value over the default. by Benjamin Kramer · 12 years ago
- eba76a4 Further reduce "-fsyntax-only -Wuninitialized" time on sqlite3.c by another 2.5% using intelligent pruning of blocks during the final reporting pass. by Ted Kremenek · 12 years ago
- c160258 Switch -Wuninitialized to use a reverse-post order traversal as by Ted Kremenek · 12 years ago
- faf3538 Add missing features for misc x86 CPUs to CPU feature translation. Patch by Jung-uk Kim. by Eli Friedman · 12 years ago
- 612db2a Clean up X86 target feature translation code slightly. No intended functional change. Patch by Jung-uk Kim. by Eli Friedman · 12 years ago
- 7db16db Typo. by Chad Rosier · 12 years ago
- c35f908 Revert r167799. It's not really correct, and it doesn't fix the problem that it was intended to fix. by Bill Wendling · 12 years ago
- e60729a Testcase overriding-ftemplate-comments.cpp: use [[@LINE]] to make it less fragile. by Dmitri Gribenko · 12 years ago
- ecf1626 [driver] Add the missing TY_PP_ObjCXX_Alias case to the isCXX function. by Chad Rosier · 12 years ago
- 95f6190 StmtDumper: remove incomplete support for limiting the maximum dump depth. by Dmitri Gribenko · 12 years ago
- 5f684e9 Fix partial-match-bind-behavior with forEachDescendant() matchers. by Daniel Jasper · 12 years ago
- 58782be [analyzer] SATestBuild.py: fix broken string concatenation by Jordan Rose · 12 years ago
- 9ecf642 Make libASTMatchers link its dependencies. libRewriteFrontend depends on libRewriteCore. by Benjamin Kramer · 12 years ago
- 75fcb19 UBSan: enable proper linking with UBsan runtime on Darwin. Turn on building ubsan on OS X in 'make' build system. Patch by Jean-Daniel Dupas. by Alexey Samsonov · 12 years ago
- 4a9e60f Store this Decl* as a Decl* instead of a uintptr_t. No functionality change. by Nick Lewycky · 12 years ago
- 3a4c8cf clang/unittests: Fixup corresponding to Doug's r168136. by NAKAMURA Takumi · 12 years ago
- 49a8754 Since CreateTargetInfo is taking ownership of the target options, pass by Douglas Gregor · 12 years ago
- 8149a98 Remove unused diagnostics by Douglas Gregor · 12 years ago
- 10310e2 Revert r168132, "clang/test/lit.cfg: Suppress the feature 'dev-fd-fs' for now." I missed Daniel's r168095 by my accident. by NAKAMURA Takumi · 12 years ago
- 7fdc8fd [libclang] When caching code-completion results, pass the CachedCompletionAllocator by Argyrios Kyrtzidis · 12 years ago
- 03e1f76 clang/test/lit.cfg: Suppress the feature 'dev-fd-fs' for now. by NAKAMURA Takumi · 12 years ago
- 2a9be3e CPP Output: Do not emit an enter file marker for the main file. by Daniel Dunbar · 12 years ago
- 8f50b24 Take into account the zero sign bit for positive numbers when computing the bit by Richard Trieu · 12 years ago
- 0bbf1c6 Fix PR14321, a crash when Clang is built with GCC 4.7 at -O1 or greater. by Matt Beaumont-Gay · 12 years ago
- 426391c A step towards sorting out handling of triviality of special members in C++11. by Richard Smith · 12 years ago
- 40b48a1 Mention the lldb formatters in the clang wiki under debugging. by Argyrios Kyrtzidis · 12 years ago
- fc0eb2a [ClangDataFormat.py] Add summary for QualType. by Argyrios Kyrtzidis · 12 years ago
- 84fd6df Make sure CodeGenTypes correctly reconverts function types. Fixes PR14355, a crash in IR generation. by Eli Friedman · 12 years ago
- 6f9a445 PR9903: Recover from a member functon declared with the 'typedef' specifier by by Richard Smith · 12 years ago
- f002496 [analyzer] CmpRuns: move the clang_version info into the run (out of report) by Anna Zaks · 12 years ago
- e8b5db4 Comment to XML conversion test: correct filename. by Dmitri Gribenko · 12 years ago
- f55a9e5 [analyzer] SATestBuild.py: correctly add -j option for projects using make. by Jordan Rose · 12 years ago
- 61322bc Split annotate-comments.cpp into a fragile (that uses hardcoded line numbers) by Dmitri Gribenko · 12 years ago
- 0278f1b tests: Mark the /dev/fd test as requiring Darwin until I can test on other OSes. by Daniel Dunbar · 12 years ago
- 596be93 [utils/ClangDataFormat.py] For invalid source locations just return by Argyrios Kyrtzidis · 12 years ago