- Jun 21, 2013
-
-
Nick Lewycky authored
given -disable-free. (Reviewed by John McCall over IRC.) llvm-svn: 184595
-
David Blaikie authored
PR16214: Debug info for types first used via pointers or qualified types & later require definitions llvm-svn: 184594
-
Matt Beaumont-Gay authored
Fixes PR16292. llvm-svn: 184581
-
Justin Holewinski authored
llvm-svn: 184578
-
Manuel Klimek authored
Make that option the default for LLVM style. llvm-svn: 184563
-
Jordan Rose authored
Per review from Anna, this really should have been two commits, and besides it's causing problems on our internal buildbot. Reverting until these have been worked out. This reverts r184511 / 98123284826bb4ce422775563ff1a01580ec5766. llvm-svn: 184561
-
Douglas Gregor authored
This prevents -pedantic from causing warnings in the system headers used to create modules. Fixes <rdar://problem/14201171>. llvm-svn: 184560
-
Samuel Benzaquen authored
Add support for polymorphic matchers. Use runtime type checking to determine the right polymorphic overload to use. llvm-svn: 184558
-
Reid Kleckner authored
Itanium destroys them in the caller at the end of the full expression, but MSVC destroys them in the callee. This is further complicated by the need to emit EH-only destructor cleanups in the caller. This should help clang compile MSVC's debug iterators more correctly. There is still an outstanding issue in PR5064 of a memcpy emitted by the LLVM backend, which is not correct for C++ records. Fixes PR16226. Reviewers: rjmccall Differential Revision: http://llvm-reviews.chandlerc.com/D929 llvm-svn: 184543
-
Eli Friedman authored
llvm-svn: 184520
-
Eli Friedman authored
llvm-svn: 184517
-
Nico Weber authored
llvm-svn: 184516
-
David Blaikie authored
llvm-svn: 184512
-
Jordan Rose authored
Certain expressions can cause a constructor invocation to zero-initialize its object even if the constructor itself does no initialization. The analyzer now handles that before evaluating the call to the constructor, using the same "default binding" mechanism that calloc() uses, rather than simply ignoring the zero-initialization flag. As a bonus, trivial default constructors are now no longer inlined; they are instead processed explicitly by ExprEngine. This has a (positive) effect on the generated path edges: they no longer stop at a default constructor call unless there's a user-provided implementation. <rdar://problem/14212563> llvm-svn: 184511
-
David Blaikie authored
This just seems a bit tidier/more principled. Based on a patch provided by Adrian - with the only minor tweak that it needed to use "getTypeOrNull" rather than "getCompletedTypeOrNull" since we don't store declarations in the CompletedTypes cache. No intended functionality change. llvm-svn: 184509
-
Douglas Gregor authored
As an optimization, we only kept declared methods with distinct signatures in the global method pool, to keep the method lists small. Under modules, however, one could have two different methods with the same signature that occur in different (sub)modules. If only the later submodule is important, message sends to 'id' with that selector would fail because the first method (the only one that got into the method pool) was hidden. When building a module, keep *all* of the declared methods. I did a quick check of both module build time and uses of modules, and found no performance regression despite this causing us to keep more methods in the global method pool. Fixes <rdar://problem/14148896>. llvm-svn: 184504
-
Larisse Voufo authored
llvm-svn: 184503
-
Chandler Carruth authored
directory for programs used by the driver is actually the standard behavior we want to be compatible with GCC cross compilers -- it isn't specific to SUSE or any other distro. Also start fleshing out testing of the different cross compilation patterns, both with a new very bare-bones tree of cross compilers and by extending the multilib trees. Currently, we don't correctly model doing a cross compile using the non-triple target of a bi-arch GCC install, but I'll add support for that (and tests) next. llvm-svn: 184499
-
Nico Weber authored
llvm-svn: 184498
-
Michael Gottesman authored
This will enable users in security critical applications to perform checked-arithmetic in a fast safe manner that is amenable to c. Tests/an update to Language Extensions is included as well. rdar://13421498. llvm-svn: 184497
-
Richard Trieu authored
llvm-svn: 184496
-
Richard Smith authored
llvm-svn: 184495
-
Eli Friedman authored
llvm-svn: 184493
-
Richard Smith authored
operations in the case where evaluating a subexpression fails. No functionality change, but test/Sema/many-logical-ops.c gets ~100x faster with this change. llvm-svn: 184489
-
- Jun 20, 2013
-
-
Nico Weber authored
This is needed to parse libstdc++ 4.7's type_traits, see PR13530. llvm-svn: 184476
-
John McCall authored
r174939-40 caused us to do this in the canonical terminate lpad, but when the EH stack has other cleanups on it we use the terminate handler block, which wasn't doing this. Fixes the rest of rdar://11904428 given appropriate stdlib support. llvm-svn: 184475
-
Adrian Prantl authored
limited debug info. This is another small addendum to r184252. rdar://problem/14101097 llvm-svn: 184473
-
Lawrence Crowl authored
headers may be included from within the module, but not from outside the module. llvm-svn: 184471
-
Richard Trieu authored
llvm-svn: 184470
-
Eli Friedman authored
llvm-svn: 184466
-
Meador Inge authored
The simplify-libcalls pass has been removed from LLVM. Thus 'PMBuilder.DisableSimplifyLibCalls' does not exist anymore. The disabling/enabling of library call simplifications is done through the TargetLibraryInfo which is already wired up in Clang. llvm-svn: 184458
-
Eli Friedman authored
llvm-svn: 184453
-
Rafael Espindola authored
llvm-svn: 184432
-
Samuel Benzaquen authored
- Added conversion routines and checks in Matcher<T> that take a DynTypedMatcher. - Added type information on the error messages for the marshallers. - Allows future work on Polymorphic/overloaded matchers. We should be able to disambiguate at runtime and choose the appropriate overload. llvm-svn: 184429
-
Manuel Klimek authored
Most of the tests contributed by Edwin Vane. llvm-svn: 184427
-
Alexander Kornienko authored
Summary: Fixes a problem where \t,\v or \f could lead to a crash when placed as a first character in a line comment. The cause is that rtrim and ltrim handle these characters, but our code didn't, so some invariants could be broken. Reviewers: klimek Reviewed By: klimek CC: cfe-commits Differential Revision: http://llvm-reviews.chandlerc.com/D1013 llvm-svn: 184425
-
Enea Zaffanella authored
llvm-svn: 184417
-
Evgeniy Stepanov authored
A workaroudn for PR16386. MSan's operator new aften has side-effects that are miscompiled without this flag. llvm-svn: 184410
-
Pavel Labath authored
Summary: When doing a reinterpret+dynamic cast from an incomplete type, the analyzer would crash (bug #16308). This fix makes the dynamic cast evaluator ignore incomplete types, as they can never be used in a dynamic_cast. Also adding a regression test. CC: cfe-commits Differential Revision: http://llvm-reviews.chandlerc.com/D1006 llvm-svn: 184403
-
Chandler Carruth authored
This fixes PR16370, I'll add the test case in a follow-up commit. llvm-svn: 184401
-