- 2d684c2 Remove useless forward decl. by Kovarththanan Rajaratnam · 15 years ago
- dbdf5e7 During C++ name lookup, use DeclContext::Equals() rather than by Douglas Gregor · 15 years ago
- 711be1e Implement C++ [temp.local]p8, which specifies that a template by Douglas Gregor · 15 years ago
- 4b7a834 Add support for -Wwrite-strings. Patch by Mike M! Fixes PR 4804. by John McCall · 15 years ago
- b621766 Remember declaration scope qualifiers in the AST. Imposes no memory overhead by John McCall · 15 years ago
- b05b5f3 Remember access paths for visible conversion decls. by John McCall · 15 years ago
- 51f4c94 Fix thinko and enable clang build on mingw again (hopefully) by Anton Korobeynikov · 15 years ago
- c3cde07 Add EmitString helper method by Kovarththanan Rajaratnam · 15 years ago
- 2e6051a Unbreak last commit. This should have been part of r98478. by Kovarththanan Rajaratnam · 15 years ago
- 74e485e Pass file string by reference by Kovarththanan Rajaratnam · 15 years ago
- aba54a9 Path related cleanup. Remove unnecessary variables. by Kovarththanan Rajaratnam · 15 years ago
- 11a18f1 Use makeAbsolute() by Kovarththanan Rajaratnam · 15 years ago
- 48673e6 Move to anonymous namespace by Kovarththanan Rajaratnam · 15 years ago
- ad9e06d Fixed copy-and-paste error causing categories to contain the protocols declared on the class, not the protocols declared on the category. by David Chisnall · 15 years ago
- c2a9816 Revert 98439. There is a bad race condition in sys::Path::makeUnique on win32. by Benjamin Kramer · 15 years ago
- b031c87 Add missing space. by Rafael Espindola · 15 years ago
- 8f51a4f Give explicit template instantiations weak ODR linkage. Former by Douglas Gregor · 15 years ago
- 961b167 Fix PR6562. If a type is dependent, we don't know if it will have implicit by Rafael Espindola · 15 years ago
- ee99005 Make getTemporaryPath a static member of CIndexer and use it to replace tmpnam calls. by Benjamin Kramer · 15 years ago
- fea3d4d Use raw_ostream instead of sprintf. by Benjamin Kramer · 15 years ago
- 92d6cd2 Simplify code. by Benjamin Kramer · 15 years ago
- 1935754 Use SmallString instead of SmallVector by Kovarththanan Rajaratnam · 15 years ago
- 65cc1e8 No need to call setIdentifierInfo() after LookUpIdentifierInfo() which LookUpIdentifierInfo() will automatically do by Kovarththanan Rajaratnam · 15 years ago
- 34fd284 Re-revert the explicit template instantiation linkage patch. I am beginning to look incompetent by Douglas Gregor · 15 years ago
- 8721360 Reinstate patch to turn explicit template instantiations into weak symbols by Douglas Gregor · 15 years ago
- 896b70f Implement several CIndex functions for constructing USRs from C-strings instead of AST elements. by Ted Kremenek · 15 years ago
- 1c471f3 Check compatibility of vector types using their canonicalizations. by John McCall · 15 years ago
- 3352406 Allow users to set CPPFLAGS and CXXFLAGS on the make command line. by Jeffrey Yasskin · 15 years ago
- 4c9f709 Use llvm::SmallVector instead of std::vector. by Ted Kremenek · 15 years ago
- 20e1c7e Fix a rare corner case bug which exposed a serious block API generation by Fariborz Jahanian · 15 years ago
- 22fe585 If main file name is empty then use "<unknown>". by Devang Patel · 15 years ago
- cffbc78 Preserve the inherited-default-argument bit through instantiation. by John McCall · 15 years ago
- bf73b35 Remember whether a ParmVarDecl was spelled with a default argument or by John McCall · 15 years ago
- 3ff9da4 Fix grammar by Ted Kremenek · 15 years ago
- 6488292 Make IdentifierTable::get(StringRef) "primary" (no functionality change) by Kovarththanan Rajaratnam · 15 years ago
- 50acf24 Reintroduce r98340 and r98341 now without copy/paste errors. by Kovarththanan Rajaratnam · 15 years ago
- 6561adf Back out r98340 abd r98341 by Kovarththanan Rajaratnam · 15 years ago
- 811f426 Add IdentifierTable::get() overload and start using it by Kovarththanan Rajaratnam · 15 years ago
- 33d3bca fix PR6584: __SSE3__ not defined with -mss3 by Nuno Lopes · 15 years ago
- f9bc110 Switch parameter order for consistency (no functionality change) by Kovarththanan Rajaratnam · 15 years ago
- 362f6f2 Add keywords using StringRef by Kovarththanan Rajaratnam · 15 years ago
- 2781deb Cleanup using StringRef by Kovarththanan Rajaratnam · 15 years ago
- 700030e Switch over IdentifierInfoLookup to StringRef by Kovarththanan Rajaratnam · 15 years ago
- 0faede6 Improve the unused-value check to look into comma expressions and filter out by John McCall · 15 years ago
- 617def3 More this adjustment simplification. by Anders Carlsson · 15 years ago
- 4ea9006 Revert the linkage change for explicit template instantiations; something is amiss by Douglas Gregor · 15 years ago
- cd0d27f Remove OldOffset. by Anders Carlsson · 15 years ago
- ae936d5 Remove debug output. by Anders Carlsson · 15 years ago
- dd36681 Begin simplifying handling of thunks. by Anders Carlsson · 15 years ago
- e5e0c9d Give explicit template instantiations weak linkage (but don't defer by Douglas Gregor · 15 years ago
- 187ab37 Extend the builtin syntax to allow address-space qualifiers on pointers and by John McCall · 15 years ago
- e3d67bc Split Sema::ActOnProperty() into two recursive functions to clearly separate by Ted Kremenek · 15 years ago
- 0c2b4f4 Add SSE4 packed integer comparisons and corresponding intrinsics. by Eric Christopher · 15 years ago
- ceef4ce Add an extra test to this test-case. by John McCall · 15 years ago
- d60e22e Implement basic support for friend types and functions in non-dependent by John McCall · 15 years ago
- 2d2f936 Fix 80 col violations. by Ted Kremenek · 15 years ago
- 28685ab Move 'ActOn' methods to the beginning of the file by Ted Kremenek · 15 years ago
- 34836f2 Update CMake build. by Ted Kremenek · 15 years ago
- 9d64c15 Split Sema logic for ObjC @property and @synthesize into a separate file. by Ted Kremenek · 15 years ago
- ff8aeaa Integer array extraction for sse4.1. by Eric Christopher · 15 years ago
- 6fa43e3 Add packed integer array insertion. by Eric Christopher · 15 years ago
- e4c1ea0 Keep track of Record context to ensure that record elements are properly nested in debug info. by Devang Patel · 15 years ago
- 7d2aa11 For ivars created using @synthesize, set their DeclContext to be by Ted Kremenek · 15 years ago
- d1b47bf Warn about comparing an unsigned expression with 0 in tautological ways. by John McCall · 15 years ago
- d7358a3 Remember the PR number. by John McCall · 15 years ago
- 80639de Implement -Wmissing-field-initializers. Patch by mikem! by John McCall · 15 years ago
- d295d78 Use -emit-llvm-only, to avoid leaving a temp around. by Daniel Dunbar · 15 years ago
- 6cb6eb4 Add tentative support for accessing local variables with by Fariborz Jahanian · 15 years ago
- a14db75 fix PR6433, crash on va_arg of typedef. by Chris Lattner · 15 years ago
- 32c1a2a Driver: Free Action objects. by Daniel Dunbar · 15 years ago
- fd48cb3 Driver: Free synthesized derived arguments. by Daniel Dunbar · 15 years ago
- 9d44023 Driver: Free jobs in JobList and PipedJob instances. by Daniel Dunbar · 15 years ago
- f2b552e Update checker build. by Ted Kremenek · 15 years ago
- c89a7cf Use the new vtable layout code for computing virtual base offset offsets. by Anders Carlsson · 15 years ago
- d980072 Correctly mangle address of member in template arguments. Fixes PR6460 by Rafael Espindola · 15 years ago
- 069ace5 Fix a self-host problem caused by this over-eager assertion. I'm not sure by John McCall · 15 years ago
- 21ef0fa Maintain type source information for functions through template by John McCall · 15 years ago
- 92b7f70 Split C++ friend declarations into their own header/implementation file. by John McCall · 15 years ago
- bba1607 Rename getVirtualBaseOffsetIndex to getVirtualBaseOffsetOffset to reflect what it actually does. by Anders Carlsson · 15 years ago
- 1972ced When possible, use the vbase offset offsets from the most derived class directly. by Anders Carlsson · 15 years ago
- 127e467 Add a test. by Anders Carlsson · 15 years ago
- bb6305b Keep track of, and dump, vbase offset offsets. by Anders Carlsson · 15 years ago
- 1ffd79b Fix tests. by Anders Carlsson · 15 years ago
- e02fc0a Run the new vtable builder for construction vtables as well now. Note that we still don't use the data it generates. by Anders Carlsson · 15 years ago
- 37147ea More record layout builder cleanup and simplification. by Anders Carlsson · 15 years ago
- 88f4296 Get rid of the PrimaryBase parameter from LayoutVirtualBases. by Anders Carlsson · 15 years ago
- 622e247 More cleanup towards fixing the real bug. by Anders Carlsson · 15 years ago
- 147b5dd Replace the class offset vectors in RecordLayoutBuilder with maps instead so we'll have faster lookup and so we can detect duplicates. by Anders Carlsson · 15 years ago
- 584e1df More cleanup. by Anders Carlsson · 15 years ago
- 23a5fcb More record layout builder cleanup. by Anders Carlsson · 15 years ago
- b6ee4b0 Assert that primary bases always have offset 0. by Anders Carlsson · 15 years ago
- 568eb6c Remove unused 'IVars' field from ObjCInterfaceDecl. That functionality by Ted Kremenek · 15 years ago
- 9dc82d2 Remove the IndirectPrimary parameter in LayoutVirtualBases; it's already there as a member variable. by Anders Carlsson · 15 years ago
- 200c5c2 More cleanup and simplification of the record layout builder. by Anders Carlsson · 15 years ago
- ec853ba Support PPC-32 DWARF EH intrinisics. Thanks to rdivacky for his assistance. by John McCall · 15 years ago
- 0af9523 set alignment on static locals properly, patch by Arnaud de Grandmaison! by Chris Lattner · 15 years ago
- e3bdbee Get rid of the LayoutBaseNonVirtually; it was used to lay out a base either as a non-virtual base or a virtual base. by Anders Carlsson · 15 years ago
- e239b9d More shuffling. by Anders Carlsson · 15 years ago
- 4c3a7b0 Cleanups, no functionality change yet. by Anders Carlsson · 15 years ago
- defd016 add DESTDIR support for clang headers, PR6556. Patch by Matthias Klose! by Chris Lattner · 15 years ago