- 2c0abf4 Add FixItHint for -Wnull-conversion to initialize with an appropriate literal. by David Blaikie · 13 years ago
- 694e796 Add -Wloop-analysis. This warning will fire on for loops which the variables by Richard Trieu · 13 years ago
- de88246 Restore paren, bracket and brace counts in parser when by Douglas Gregor · 13 years ago
- 262bc18 Remove the ref/value inconsistency in filter_decl_iterator. by David Blaikie · 13 years ago
- 2980383 Correct CFGBlock's front() and back() to return by const ref rather than value. by David Blaikie · 13 years ago
- a2e76f5 [class.copy]p23: Fix an assertion caused by incorrect argument numbering in a by Richard Smith · 13 years ago
- e593921 Currently __builtin_annotation() only annotates an i32. by Julien Lerouge · 13 years ago
- bddc7e5 improve error recovery for extra ')'s after a if/switch/while condition. Before: by Chris Lattner · 13 years ago
- 98f71aa C++11 weakens the requirement for types used with offsetof from POD to standard layout type. by Benjamin Kramer · 13 years ago
- 152f6b7 Rename isPODType (using the C++98 rules) into isCXX98PODType and make isPODType decide which one to use based on LangOptions. by Benjamin Kramer · 13 years ago
- d200187 [analyzer] Remove references to idx::TranslationUnit. Index is dead, cross-TU inlining never panned out. by Jordy Rose · 13 years ago
- d92fe8f Make the diagnostic for "unexpected ':' in nested name specifier" a bit easier on the eyes. by Nico Weber · 13 years ago
- 0eed2cb Bump up the MaxDepth in the BalancedDelimiterTracker. by Chad Rosier · 13 years ago
- a1366cb PR12224 (sort of): Diagnose inheriting constructor declarations in C++11 mode. by Richard Smith · 13 years ago
- 392b3f5 Imrpove the note text for when a non-type decl hides a tag type by Kaelyn Uhrain · 13 years ago
- 3a70cd6 Use enum to set debug info size generated by Clang by Alexey Samsonov · 13 years ago
- 577f14a Use a deque instead of an ImmutableList in AnalysisConsumer to preserve the file order that functions are visited. Should fix the buildbots. by Ted Kremenek · 13 years ago
- cb0a503 Change FunctionSummary.h's definition of SetOfDecls to be an ImmutableList instead by Ted Kremenek · 13 years ago
- aec2ac6 Add note to help explain why a tag such as 'struct' is needed to refer by Kaelyn Uhrain · 13 years ago
- e855b88 Remove the group from -fhonor_infinites/-fno_honor_infinites aliases. Aliases by Chad Rosier · 13 years ago
- 6e4a0af PR12660: Don't crash when initializing a const reference from a braced init list by Richard Smith · 13 years ago
- 86e6fdc Two missing -Wc++98-compat warnings, for null pointers as non-type template by Richard Smith · 13 years ago
- 45a0b26 Reject cases like by Rafael Espindola · 13 years ago
- c799a6a If a type is non-literal by virtue of being incomplete produce notes by Richard Smith · 13 years ago
- a313b2f RecursiveASTVisitor: When in 'shouldVisitTemplateInstantiations' mode, visit by Richard Smith · 13 years ago
- 2b90f76 Add an error message with fixit hint for changing '.' to '->'. by Kaelyn Uhrain · 13 years ago
- 0d62709 Use a SmallMap for StoredDeclsMap, it's usually sparsely populated so we can avoid initializing memory for 64 buckets. by Benjamin Kramer · 13 years ago
- 383fdf9 Convert a std::map that usually has between 0 and 10 elements to SmallMap. by Benjamin Kramer · 13 years ago
- e7255c1 Add acos, asin, ceil, fabs, floor, fmax, fmin, round, and tan to the builtin by Chad Rosier · 13 years ago
- 454393e Add atan, atan2, exp, and log to the builtin math library functions. by Chad Rosier · 13 years ago
- fae0f48 Alphabetize the builtin math library functions. No functional change intended. by Chad Rosier · 13 years ago
- 5482dc3 RecursiveASTVisitor: Visit instantiations of member templates of class by Richard Smith · 13 years ago
- 6603ff8 Revert r155363, due to the underlying patches in LLVM causing regression by Chandler Carruth · 13 years ago
- ac28eca Hexagon V5 (floating point) support in cfe. by Sirish Pande · 13 years ago
- 9f99d06 Fix PR12608. Patch contributed by Yang Chen. by Manuel Klimek · 13 years ago
- 38c4767 Inline helper function into only caller. by Rafael Espindola · 13 years ago
- 2954134 Fixes comment referencing old name. by Manuel Klimek · 13 years ago
- 5118337 Revert 155102 but add a fixme while I debug what is wrong with chrome's by Rafael Espindola · 13 years ago
- 6e21b16 PR12585: When processing a friend template inside a class template, don't by Richard Smith · 13 years ago
- a4156b8 Fix regression in r154844. If necessary, defer computing adjusted destructor by Richard Smith · 13 years ago
- 0b3ade8 [analyzer] Run remove dead bindings right before leaving a function. by Anna Zaks · 13 years ago
- 39b7341 [analyzer] Remove unused method. by Anna Zaks · 13 years ago
- 5a878b2 [analyzer] Constify by Anna Zaks · 13 years ago
- 05b3385 Update doxygen comment to match changes in r155218. by Richard Smith · 13 years ago
- 704c8f7 Fix bug where a class's (deleted) copy constructor would be implicitly given a by Richard Smith · 13 years ago
- 9879556 objective-arc: Retune my previous patch so warning by Fariborz Jahanian · 13 years ago
- 289677d objective-c arc: Issue warning under -Wreceiver-is-weak by Fariborz Jahanian · 13 years ago
- ae519c4 Thread safety analysis: split warnings into two groups: attribute warnings by DeLesley Hutchins · 13 years ago
- 03544fc Add missing -Wc++98-compat warnings for initializer list initializations which by Richard Smith · 13 years ago
- c7e6060 In mergeVisibility, if we already have an explicit visibility, keep it. by Rafael Espindola · 13 years ago
- 1c7eed7 In mergeVisibilityWithMin, let an implicit hidden symbol take precedence over by Rafael Espindola · 13 years ago
- d70d20a Now that we check visibility attributes in an appropriate order, by Rafael Espindola · 13 years ago
- 5727cf5 Make setVisibility private and change users to mergeVisibility. This is by Rafael Espindola · 13 years ago
- eb382ec Implements boxed expressions for Objective-C. <rdar://problem/10194391> by Patrick Beard · 13 years ago
- 13bffc5 PR 12586: Fix assert while running libc++ testsuite: deal with exception by Richard Smith · 13 years ago
- 103f41d Revert some Hexagon builtin commits to match reverts done to LLVM in by Chandler Carruth · 13 years ago
- d448ce0 VerifyICE: Pass PartialDiagnostics by reference. by Benjamin Kramer · 13 years ago
- 30318e6 Adds a FixedCompilationDatabase to be able to specify tool parameters by Manuel Klimek · 13 years ago
- 6403683 Fix bad typo reported by I-Jui Sung. by Ted Kremenek · 13 years ago
- 6749dd5 Nicer display of unprintable source, and fix caret display for non-ascii text by Seth Cantrell · 13 years ago
- 074c191 Calling setVisibility directly only makes (some) sense when the visibility is by Rafael Espindola · 13 years ago
- 9591697 Revert "Nicer display of unprintable source, and fix caret display for non-ascii text" by Seth Cantrell · 13 years ago
- e1a6eac add missing parameter index to diag by Matt Beaumont-Gay · 13 years ago
- e9a3b76 Nicer display of unprintable source, and fix caret display for non-ascii text by Seth Cantrell · 13 years ago
- e1430e9 Typo fix. by Sirish Pande · 13 years ago
- c661f14 Switches the JSONCompilationDatabase to use the YAML parser. by Manuel Klimek · 13 years ago
- 82a9478 Fix to avoid warning. Also add header, and lincense information. by Sirish Pande · 13 years ago
- 49a110d Convert vperm2f128 and vperm2i128 intrinsics back to using llvm intrinsics. Unfortunately, these instructions have behavior that can't be modeled with shuffle vector. by Craig Topper · 13 years ago
- e6975e9 Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it. by Richard Smith · 13 years ago
- ffce11b [analyzer] +comments by Anna Zaks · 13 years ago
- 93a4994 objective-c modern translator: buildit objc bool by Fariborz Jahanian · 13 years ago
- 74e2fc3 Implement the last part of C++ [class.mem]p2, delaying the parsing of by Douglas Gregor · 13 years ago
- 2b5949e Readd lost "undef BUILTIN" to fix the build. by David Blaikie · 13 years ago
- 7ac715f Hexagon V5(Floating Point) support. by Sirish Pande · 13 years ago
- 48c2407 Remove unused method. by Rafael Espindola · 13 years ago
- cefc3af Implement C++11 [expr.prim.general]p3, which permits the use of 'this' by Douglas Gregor · 13 years ago
- 4762a2d use DEFAULT_SYSROOT by Sebastian Pop · 13 years ago
- b346d2f Implement the all_lookups_iterator for PCH as a follow-up to r153970. This by Nick Lewycky · 13 years ago
- b5491f3 Change _mm256_permute4x64_epi64 and _mm256_permute4x64_pd to use builtin_shufflevector instead of specific builtins. Old builtins will be removed from llvm now that vpermq/vpermpd are supported by shuffle lowering code. by Craig Topper · 13 years ago
- b1758c6 Use forward declarations for ASTDeclContextNameLookupTable and add a missing delete. by Benjamin Kramer · 13 years ago
- fe58720 PR12226: don't generate wrong code if a braced string literal is used to by Richard Smith · 13 years ago
- 8fb9fb6 Replace manual delete[] with OwningArrayPtr. by Benjamin Kramer · 13 years ago
- 13bb701 Parser: Don't manage TemplateAnnotationIds in a delayed cleanup pool. by Benjamin Kramer · 13 years ago
- 534986f Add an AttributedStmt type to represent a statement with C++11 attributes by Richard Smith · 13 years ago
- 87e154c Remove the unused, unmaintained, incomplete 'Index' library. by Douglas Gregor · 13 years ago
- 1050471 Remove the -cc1-level option "-pubnames-dump". Such things should stay by Douglas Gregor · 13 years ago
- 51b9240 Implement __atomic_fetch_nand and __atomic_nand_fetch to complete our set of by Richard Smith · 13 years ago
- a1c4f7c PR12500: Improve the wording of the diagnostic for a redefinition of a name by Richard Smith · 13 years ago
- 5e6c3f0 Support -Wc++98-compat-pedantic as requested: by Seth Cantrell · 13 years ago
- 2c39d71 Implement the missing pieces needed to support libstdc++4.7's <atomic>: by Richard Smith · 13 years ago
- f7728dc Config.h: Add another definition which the Darwin build (sometimes) uses. by Daniel Dunbar · 13 years ago
- 6a86082 [analyzer] PCH deserialization optimization. by Anna Zaks · 13 years ago
- 262acda objective-c literals: Issue warning and ignore by Fariborz Jahanian · 13 years ago
- 6a91d38 Added a flag to the parser to skip method bodies. by Erik Verbruggen · 13 years ago
- ff34d40 Implement support for 18 of the GNU-compatible __atomic builtins. by Richard Smith · 13 years ago
- 78d5d3b Implement clang_getDiagnosticCategoryText() to provide a way for a client of libclang to accurately by Ted Kremenek · 13 years ago
- 994d73f Part of PR10101: after a parse error in a declaration, try harder to find the by Richard Smith · 13 years ago
- d98ef9a [libclang] Introduce a couple of functions to make it convenient by Argyrios Kyrtzidis · 13 years ago
- fafbf06 Provide, and document, a set of __c11_atomic_* intrinsics to implement C11's by Richard Smith · 13 years ago
- e722ed6 [libclang] If displayDiagnostics is set (when calling clang_createIndex), make sure to by Argyrios Kyrtzidis · 13 years ago