- Nov 08, 2011
-
-
Eli Friedman authored
llvm-svn: 144112
-
- Nov 05, 2011
-
-
Daniel Dunbar authored
to go through the driver. llvm-svn: 143791
-
- Nov 04, 2011
-
-
Devang Patel authored
Enable -flimit-debug-info by default. Now, clang lazily emits debug info for structs. Original behavior can be restored using -fno-limit-debug-info. llvm-svn: 143733
-
- Nov 03, 2011
-
-
Douglas Gregor authored
and don't try to destroy them, either. Fixes <rdar://problem/10228639>. llvm-svn: 143584
-
- Nov 02, 2011
-
-
Fariborz Jahanian authored
rvale-references are captured by reference in blocks. // rdar://9971124. llvm-svn: 143583
-
- Nov 01, 2011
-
-
Fariborz Jahanian authored
c++ object into block descriptor. // rdar://9971124 llvm-svn: 143475
-
Eli Friedman authored
Fix the representation of wide strings in the AST and IR so that it uses the native representation of integers for the elements. This fixes a bunch of nastiness involving treating wide strings as a series of bytes. Patch by Seth Cantrell. llvm-svn: 143417
-
Fariborz Jahanian authored
In this case, temporary value is copied into block descriptor as their own copy to work on. // rdar://9971124 llvm-svn: 143399
-
- Oct 28, 2011
-
-
Devang Patel authored
In case of template specialization, do not try to delay emitting debug info for concrete type in -flimit-debug-info mode. This fixes some of the failures from bs15503.exp tests in gdb testsuite. llvm-svn: 143227
-
Richard Smith authored
are present in all the necessary places: In constant expression evaluation, evaluate lvalues as lvalues and rvalues as rvalues. Remove special case for caching reference initialization and fix a cyclic initialization crash in the process. llvm-svn: 143204
-
John McCall authored
a binary operator involving a dependently-typed overload set. llvm-svn: 143172
-
- Oct 27, 2011
-
-
Nick Lewycky authored
from r143097. llvm-svn: 143098
-
- Oct 25, 2011
-
-
Devang Patel authored
llvm-svn: 142873
-
Eli Friedman authored
llvm-svn: 142863
-
- Oct 22, 2011
-
-
Eric Christopher authored
for the function type. Update a testcase accordingly. Patch initially by Anders Waldenborg! llvm-svn: 142700
-
Fariborz Jahanian authored
class declaration which forces any such class and any class that inherits from such a class to have their typeinfo symbols be marked as weak. // rdar://10246395 A test/CodeGenCXX/weak-extern-typeinfo.cpp M lib/Sema/SemaDeclCXX.cpp M lib/Sema/SemaDeclAttr.cpp M lib/CodeGen/CGRTTI.cpp llvm-svn: 142693
-
- Oct 15, 2011
-
-
Eli Friedman authored
llvm-svn: 142047
-
Anton Korobeynikov authored
llvm-svn: 142017
-
- Oct 14, 2011
-
-
Eli Friedman authored
PR11124: Don't overwrite memory outside of a base class when performing zero-initialization before running its constructor. llvm-svn: 141933
-
Richard Smith authored
-std=c++0x. Patch by Ahmed Charles! llvm-svn: 141900
-
- Oct 11, 2011
-
-
Douglas Gregor authored
to check whether the constructor is accessible. Fixes <rdar://problem/10202900>. llvm-svn: 141588
-
- Oct 07, 2011
-
-
John McCall authored
definition. Assert this. Change IR generation to not try to aggressively emit the IR translation of a record during its own definition. Fixes PR10912. llvm-svn: 141350
-
- Sep 27, 2011
-
-
Eli Friedman authored
llvm-svn: 140620
-
- Sep 26, 2011
-
-
Peter Collingbourne authored
llvm-svn: 140508
-
Peter Collingbourne authored
llvm-svn: 140503
-
- Sep 24, 2011
-
-
Sebastian Redl authored
Allow empty initializer lists for scalars, which mean value-initialization. Constant evaluation for single-element and empty initializer lists for scalars. Codegen for empty initializer lists for scalars. Test case comes in next commit. llvm-svn: 140459
-
- Sep 22, 2011
-
-
Douglas Gregor authored
they still need the logic to cope with array member initialization. Fixes PR10720. llvm-svn: 140302
-
- Sep 21, 2011
-
-
John McCall authored
conversions (rather than just call-arguments). llvm-svn: 140244
-
- Sep 19, 2011
-
-
Bill Wendling authored
This model uses the 'landingpad' instruction, which is pinned to the top of the landing pad. (A landing pad is defined as the destination of the unwind branch of an invoke instruction.) All of the information needed to generate the correct exception handling metadata during code generation is encoded into the landingpad instruction. The new 'resume' instruction takes the place of the llvm.eh.resume intrinsic call. It's lowered in much the same way as the intrinsic is. llvm-svn: 140049
-
John McCall authored
instead of internal linkage. llvm-svn: 140030
-
- Sep 18, 2011
-
-
Richard Smith authored
has no effect since any such destructors must be trivial, and in C++11 such destructors must not be called. llvm-svn: 139997
-
Richard Smith authored
Fix PR10531. Attach an initializer to anonymous unions, since the default constructor might not be trivial (if there is an in-class initializer for some member) and might be deleted. llvm-svn: 139991
-
- Sep 15, 2011
-
-
Devang Patel authored
llvm-svn: 139752
-
- Sep 14, 2011
-
-
Eli Friedman authored
Make clang use Acquire loads and Release stores where necessary. llvm-svn: 139650
-
Eli Friedman authored
llvm-svn: 139648
-
- Sep 13, 2011
-
-
Eli Friedman authored
llvm-svn: 139643
-
- Sep 12, 2011
-
-
Devang Patel authored
llvm-svn: 139513
-
Devang Patel authored
llvm-svn: 139502
-
- Sep 10, 2011
-
-
Devang Patel authored
llvm-svn: 139443
-
- Sep 06, 2011
-
-
Douglas Gregor authored
to look through SubstNonTypeTemplateParmExprs. Then, update the IR generation of CallExprs to actually use CallExpr::getCalleeDecl() rather than attempting to mimick its behavior (badly). Fixes <rdar://problem/10063539>. llvm-svn: 139185
-