- 73dfa3d Add Darwin dylib versioning support to libclang when build with CMake. by Douglas Gregor · 15 years ago
- c0659ec When using a precompiled preamble, save the diagnostics produced when by Douglas Gregor · 15 years ago
- fe97fa1 'Assumption &A' gets default initialized to 'Possible' if it doesn't exist; no need to two by Ted Kremenek · 15 years ago
- 8077638 Add test case for <rdar://problem/8258814>. by Ted Kremenek · 15 years ago
- d8c5abb Query only the latest version of an identifier in the PCH chain. Make sure this version holds the entire declaration chain. This is a much saner solution than trying to merge the info from all elements, and makes redeclarations work properly. Expand the declarations test case to cover more compliated cases. by Sebastian Redl · 15 years ago
- ed48a8f Remove mutable data on TagType and InjectedClassNameType, by instead walking the declaration chain in search of a definition. This is necessary for a sane chained PCH implementation. No observable performance change on Carbon.h syntax-only, and bootstraps cleanly. by Sebastian Redl · 15 years ago
- e04f5fc Compute width/align of objc builtin types (id, etc) for radar 8258797. by Fariborz Jahanian · 15 years ago
- 7362aa3 Update UsersManual, we support '#pragma align' now. by Daniel Dunbar · 15 years ago
- f56a488 Frontend: Change PluginASTAction::ParseArgs to take a CompilerInstance object by Daniel Dunbar · 15 years ago
- 9c1845d You actually have to include a header in order to use a symbol, it's so 90s.. by Argyrios Kyrtzidis · 15 years ago
- b81645f Use llvm_unreachable. by Argyrios Kyrtzidis · 15 years ago
- 62db888 Shut up warnings in Release build. by Argyrios Kyrtzidis · 15 years ago
- 76c38d3 Read/write in PCH Sema's StdNamespace and StdBadAlloc and use a LazyDeclPtr for them that will deserialize them when needed. by Argyrios Kyrtzidis · 15 years ago
- 26faaac Rename getStdNamespace -> getOrCreateStdNamespace, to better reflect its functionality. by Argyrios Kyrtzidis · 15 years ago
- 25b58eb Driver/Darwin: Change where Darwin computes the host version, to normalize tool by Daniel Dunbar · 15 years ago
- 6699877 Driver: Have -ccc-host-triple simply override the default in the driver, for by Daniel Dunbar · 15 years ago
- c2bda62 Driver/Darwin: Inline some constants. by Daniel Dunbar · 15 years ago
- 214afe9 Driver/FreeBSD: Change how FreeBSD derives the Lib32 variable, to normalize tool by Daniel Dunbar · 15 years ago
- 4180011 Driver: Move HostInfo::lookupTypeForExtension to ToolChain::LookupTypeForExtension. by Daniel Dunbar · 15 years ago
- 74edcea Driver: Give Build{Universal,}Actions access to the default host tool chain. I by Daniel Dunbar · 15 years ago
- 7caf9b3 Improve flat store: MemRegion::getAsOffset() computes a region's offset within by Zhongxing Xu · 15 years ago
- 2fe238e Driver: Add Compilation::addCommand and switch tools to using it, now that we by Daniel Dunbar · 15 years ago
- d0b77e1 Driver: Eliminate PipedJob, which is now unused. by Daniel Dunbar · 15 years ago
- 7c1e465 Driver: Eliminate special InputInfo kind for pipes, it is now unused. by Daniel Dunbar · 15 years ago
- 8c631e3 Driver: Eliminate now unnecessary tool hooks for whether they accept piped input/output. by Daniel Dunbar · 15 years ago
- 9b18cca Driver: Simplify. by Daniel Dunbar · 15 years ago
- e434125 Driver: Eliminate now unused argument. by Daniel Dunbar · 15 years ago
- defcda7 Driver: Simplify logic for sending 'clang -E t.c' output to stdout. by Daniel Dunbar · 15 years ago
- 58e12fd Driver: Never try to use piped inputs. by Daniel Dunbar · 15 years ago
- c19a12d Driver: Start ripping out support for -pipe, which is worthless and complicates by Daniel Dunbar · 15 years ago
- 95c0457 Driver/OpenBSD: Update toolchain for compiler changes / C++; patch by Jonathan by Daniel Dunbar · 15 years ago
- edf29b0 Driver: Keep track of a separate "install dir", which is the path where clang by Daniel Dunbar · 15 years ago
- 5633c1e Simplify. by Daniel Dunbar · 15 years ago
- 270c035 PR7777: Set EnabledByDefault to something useful, instead of setting it by Eli Friedman · 15 years ago
- b4b9b15 Kill off RequiresGlobalConstructor in favor of isConstantInitializer. by John McCall · 15 years ago
- 626e96e Make a first pass at implementing -Wglobal-constructors. I'm worried that this by John McCall · 15 years ago
- 1d8d1cc Instantiate attributes from the pattern record when instantiating by John McCall · 15 years ago
- b567a8b Fix indentation. by John McCall · 15 years ago
- e46f62c Don't consider all local variables in C++ to mandate scope-checking, just by John McCall · 15 years ago
- b60a77e Only run the jump-checker if there's a branch-protected scope *and* there's by John McCall · 15 years ago
- 64a1523 Iterate typeloc's for class bases. by Nick Lewycky · 15 years ago
- 87bb582 Fix fragile-ABI ObjC exceptions in the presence of optimization with by John McCall · 15 years ago
- f9ae8f9 build: Don't pass -avoid-version or -no-undefined on Darwin, they don't do by Daniel Dunbar · 15 years ago
- cbb98ed Parser: Add support for #pragma align, which is just another spelling of #pragma by Daniel Dunbar · 15 years ago
- dd0e490 After a lengthy design discussion, add support for "ownership attributes" for malloc/free checking. Patch by Andrew McGregor! by Ted Kremenek · 15 years ago
- cc5888d Implement dependency analysis for the precompiled preamble. If any of by Douglas Gregor · 15 years ago
- 036cdf0 Update checker build. by Ted Kremenek · 15 years ago
- d85770b Test case for PR7763. by Tom Care · 15 years ago
- 216b201 Uncomment unfinished work bailout in IdempotentOperationsChecker. by Tom Care · 15 years ago
- 385103b Add some timers to ASTUnit that are only enabled when the LIBCLANG_TIMING environment variable is set. by Douglas Gregor · 15 years ago
- 1450ef9 Correctly deal with using names for both functions and structs in chained PCH. by Sebastian Redl · 15 years ago
- 9f339ba Add specialisation iterators for {Class,Function}TemplateDecl by Peter Collingbourne · 15 years ago
- 4048590 Refactor find*Specialization functions using SpecEntryTraits by Peter Collingbourne · 15 years ago
- 44dd0b4 Introduce RedeclarableTemplateDecl::SpecEntryTraits by Peter Collingbourne · 15 years ago
- ade5000 Safely get a data pointer for vectors that might be empty. by Sebastian Redl · 15 years ago
- 73f666f Tighten the rules when deciding if an ivar must be by Fariborz Jahanian · 15 years ago
- 35f9a19 Fixed typedef inside extern "C". by Abramo Bagnara · 15 years ago
- acc9bf3 tests: Use env instead of assuming bash. by Daniel Dunbar · 15 years ago
- 390f55f Update checker build. by Ted Kremenek · 15 years ago
- 0dbbc04 When we are deserializing the lexical decls of a DeclContext from PCH, notify the PCHReader to hold off passing Decls by Argyrios Kyrtzidis · 15 years ago
- 29ee3a2 Refactor the way PCHReader tracks whether we are in recursive loading. by Argyrios Kyrtzidis · 15 years ago
- 207014e Improve error recovery when presented with an ill-formed template-id by John McCall · 15 years ago
- 27940d2 If a TST_typename has a null type, mark the declarator invalid. Prevents by John McCall · 15 years ago
- 85aca0f Emit global destructors even if the destroyed object has no initializers or has by John McCall · 15 years ago
- 117e3f4 fix PR5179 and correctly fix PR5831 to not miscompile. by Chris Lattner · 15 years ago
- 98406a9 There is no reason for this test to invoke 'llc'. by Daniel Dunbar · 15 years ago
- 7b70cf6 Add test case for crash reported in <rdar://problem/8236270> (which has since been fixed in trunk). by Ted Kremenek · 15 years ago
- 2d6c906 Don't print out ivars twice in Decl::print(). Fixes <rdar://problem/8253668>. by Ted Kremenek · 15 years ago
- ffaab3e Make macro weirdness in chained PCH work. This required changing the way PCHReader and PCHWriter are initialized to correctly pick up all initializer. On the upside, this means that there is far less repetition in the dependent PCH now. by Sebastian Redl · 15 years ago
- 3ce9e7d Add clang_isPODType() for querying if the CXType is POD. Implements <rdar://problem/8250669>. by Ted Kremenek · 15 years ago
- 6633e3c Revert "Re-apply fixed version of 108749, correctly conditionalizing the new by Daniel Dunbar · 15 years ago
- 2b1acd4 CMake: Clang test targets depend on the {FileCheck,not,count} tools. by Daniel Dunbar · 15 years ago
- bb37f50 Wire up sema checking for __builtin_arm_usat and __builtin_arm_ssat immediates. by Nate Begeman · 15 years ago
- d022152 Teach isIncompleteType() to look through sugar when it is dealing with by Douglas Gregor · 15 years ago
- eb518b4 move the last hunk of getCoerceResult into the place by Chris Lattner · 15 years ago
- 1cce195 now that direct and coerce are merged, getCoerceResult gets simpler. by Chris Lattner · 15 years ago
- 1b32ae9 now that GetSSETypeAtOffset handles passing SSE class values as by Chris Lattner · 15 years ago
- 4ac7c0b Change the name to something less terrible; suggestion by Doug. No functionality change. by Argyrios Kyrtzidis · 15 years ago
- ab411c8 Weak references and variables that are not definitions are not required for early codegen/deserialization. by Argyrios Kyrtzidis · 15 years ago
- 0b36200 Implement the clang-side of detection for when to pass as by Chris Lattner · 15 years ago
- cba8d31 Look at me, I can count! by Chris Lattner · 15 years ago
- afbf312 Implement PCH support for offsetof(base-specifier). by Argyrios Kyrtzidis · 15 years ago
- 90e99a8 Merge PCHWriterDecl.cpp's isRequiredDecl and CodeGenModule::MayDeferGeneration into a new function, by Argyrios Kyrtzidis · 15 years ago
- f47c944 fix rdar://8251384, another case where we could access beyond the by Chris Lattner · 15 years ago
- f640477 Add codegen support for ARM qadd & qsub intrinsics by Nate Begeman · 15 years ago
- 603519d start setting up infrastructure for passing multi-floats by Chris Lattner · 15 years ago
- 7ac3d5a Prepare for upcoming ownership change. by Benjamin Kramer · 15 years ago
- 0d2656d rename Get8ByteTypeAtOffset -> GetINTEGERTypeAtOffset to by Chris Lattner · 15 years ago
- 9e45a3d handle a case where we could access off the end of a function by Chris Lattner · 15 years ago
- c10ab19 in release mode, irbuilder doesn't add names to instructions, by Chris Lattner · 15 years ago
- a7206c5 fix PR7742 / rdar://8250764, a miscompilation of struct by Chris Lattner · 15 years ago
- b1d58e3 Tigthen the condition for issung ivar shadowing by Fariborz Jahanian · 15 years ago
- 5492b02 When dynamic_cast'ing from a type to itself, fill in the cast kind by Douglas Gregor · 15 years ago
- f88718e Implement RedeclarableTemplateDecl::getNextRedeclaration by Peter Collingbourne · 15 years ago
- 8a798a7 Store latest redeclaration for each redeclarable template declaration by Peter Collingbourne · 15 years ago
- 9eabeba Refactor redeclarable template declarations by Peter Collingbourne · 15 years ago
- 8f70ddb When taking the address of a value of Objective-C object type (e.g., by Douglas Gregor · 15 years ago
- 447234d Allow a looser form of compatibility checking (which ignores by Douglas Gregor · 15 years ago
- 254a942 When deleting a value of class type, make sure that type is complete by Douglas Gregor · 15 years ago
- 0333296 Reword the empty struct/union warning in C to note that such structs and unions have size 0 in C, size 1 in C++. Put this warning under -Wc++-compat. by Douglas Gregor · 15 years ago