- Apr 19, 2013
-
-
Richard Smith authored
llvm-svn: 179861
-
- Apr 17, 2013
-
-
Jordan Rose authored
Also, add a few random extra open projects. Most of C++ support is done; we don't need the status page anymore. We're hoping that the C++-related open projects are the only major pieces of functionality we don't model at this point. llvm-svn: 179659
-
Jordan Rose authored
llvm-svn: 179658
-
- Apr 16, 2013
-
-
Anna Zaks authored
llvm-svn: 179631
-
- Apr 15, 2013
-
-
Tim Northover authored
This is no longer true. llvm-svn: 179519
-
- Apr 14, 2013
-
-
Anna Zaks authored
llvm-svn: 179490
-
- Apr 10, 2013
-
-
Richard Smith authored
constructor. This isn't quite perfect (as usual, we don't handle default arguments correctly yet, and we don't deal with copy/move constructors for arguments correctly either, but this will be fixed when we implement core issue 1351. This completes our support for inheriting constructors. llvm-svn: 179154
-
- Apr 08, 2013
-
-
Ted Kremenek authored
llvm-svn: 179055
-
Chris Lattner authored
In the comparison, both clang and GCC are popular and widely adopted. This is no longer a win of GCC. This whole doc should really be looked at. llvm-svn: 179040
-
- Mar 18, 2013
-
-
Richard Smith authored
llvm-svn: 177325
-
Richard Smith authored
any, and add a note that we cannot treat __int128 as an extended integral type. llvm-svn: 177324
-
- Mar 12, 2013
-
-
Richard Smith authored
implement correct functionality, even if it's not optimal. On this basis, mark "data dependency ordering" as done. Add footnotes for cases where our implementation is known to be suboptimal. llvm-svn: 176891
-
- Mar 10, 2013
-
-
Richard Smith authored
llvm-svn: 176781
-
- Mar 05, 2013
-
-
Richard Smith authored
llvm-svn: 176515
-
- Mar 02, 2013
-
-
Jordan Rose authored
See http://clang-analyzer.llvm.org/release_notes.html for what's new in this build. llvm-svn: 176389
-
- Mar 01, 2013
-
-
Anna Zaks authored
Reword the FAQ to stress more that the assert should be used only in case the developer is sure that the issue is a false positive. llvm-svn: 176335
-
- Feb 28, 2013
-
-
Renato Golin authored
llvm-svn: 176221
-
- Feb 27, 2013
-
-
Renato Golin authored
llvm-svn: 176211
-
- Feb 22, 2013
-
-
Richard Smith authored
* Mark attributes as done in SVN. * Downgrade alignment support from 'Clang 3.0' to 'SVN', now that we actually implement the rules. * Upgrade 'Dynamic initialization with concurrency' from 'No' to 'Clang 2.9' -- all that is required here is the ABI-mandated locking for the initialization of static locals. llvm-svn: 175882
-
- Feb 13, 2013
-
-
Tanya Lattner authored
llvm-svn: 175090
-
- Feb 12, 2013
-
-
Anton Yartsev authored
llvm-svn: 174942
-
Anton Yartsev authored
+ added progress information for several checkers llvm-svn: 174941
-
Tanya Lattner authored
llvm-svn: 174918
-
- Feb 08, 2013
-
-
Ted Kremenek authored
llvm-svn: 174759
-
Ted Kremenek authored
llvm-svn: 174758
-
- Feb 02, 2013
-
-
Ted Kremenek authored
Turns out we didn't update scan-build to work with HTML files in nested directories. llvm-svn: 174256
-
Ted Kremenek authored
llvm-svn: 174252
-
- Feb 01, 2013
-
-
Richard Smith authored
llvm-svn: 174126
-
- Jan 29, 2013
-
-
Richard Smith authored
* Mark 'sequence points' as done now we have a warning for unsequenced operations * Mark 'memory model' as done now we correctly model bitfield operations llvm-svn: 173771
-
- Jan 08, 2013
-
-
Jordan Rose authored
llvm-svn: 171885
-
Ted Kremenek authored
llvm-svn: 171870
-
Anna Zaks authored
llvm-svn: 171823
-
- Jan 05, 2013
-
-
Ted Kremenek authored
llvm-svn: 171560
-
- Nov 28, 2012
-
-
NAKAMURA Takumi authored
Suggested by Sean McBride, thanks! llvm-svn: 168745
-
NAKAMURA Takumi authored
Suggested by Sean McBride, thanks! llvm-svn: 168744
-
- Nov 16, 2012
-
-
Argyrios Kyrtzidis authored
llvm-svn: 168118
-
- Nov 15, 2012
-
-
Tanya Lattner authored
llvm-svn: 168015
-
- Nov 07, 2012
-
-
Jordan Rose authored
Patch by Sean McBride! llvm-svn: 167537
-
- Oct 31, 2012
-
-
Rafael Espindola authored
llvm-svn: 167098
-
- Oct 23, 2012
-
-
Richard Smith authored
libraries have an incorrect definition of std::common_type (inherited from a bug in the standard -- see LWG issue 2141), whereby they produce reference types when they should not. If we instantiate a typedef named std::common_type<...>::type, which is defined in a system header as decltype(... ? ... : ...), and the decltype produces a reference type, convert it to the non-reference type. (This doesn't affect any LWG2141-conforming implementation of common_type, such as libc++'s, because the default implementation of common_type<...>::type isn't supposed to produce a reference type.) This is horrible. I'm really sorry. :( Better ideas appreciated! llvm-svn: 166455
-