aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGDecl.cpp
AgeCommit message (Expand)Author
2012-05-04This patch adds a new Clang compiler flag "-gline-tables-only".Alexey Samsonov
2012-04-13Don't enter cleanups for unreachable variables. It's impossible toJohn McCall
2012-03-30Make sure we unique static-local decls across multiple emissions ofJohn McCall
2012-03-30Revert r153723, and its follow-ups r153728 and r153733.Chandler Carruth
2012-03-30Do the static-locals thing properly in the face of unions andJohn McCall
2012-03-30When emitting a static local variable in C++, handleJohn McCall
2012-03-29Revert r153613 as it's causing large compile-time regressions on the nightly ...Chad Rosier
2012-03-28When we can't prove that the target of an aggregate copy isJohn McCall
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-03-10Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr toJohn McCall
2012-03-09Make sure we update the static local decl address map when we are forced to r...Eli Friedman
2012-02-19Make heap-allocation of std::initializer_list 'work'.Sebastian Redl
2012-02-18Fix comment.Chad Rosier
2012-02-17Basic code generation support for std::initializer_list.Sebastian Redl
2012-02-17Bug fix: do not emit static const local variables with mutable membersRichard Smith
2012-02-17Whether an argument is required (in contrast with being anJohn McCall
2012-02-13Deal with a horrible C++11 special case. If a non-literal type has a constexprRichard Smith
2012-02-09CWG issue 1405: mutable members are allowed in literal types, but can't undergoRichard Smith
2012-01-31enhance some optimization logic to handle ConstantDataSequentialChris Lattner
2012-01-27Placate gcc's -Wreturn-typeMatt Beaumont-Gay
2012-01-26Use function pointers, rather than references, to pass DestroyersPeter Collingbourne
2012-01-16Some improvements to the handling of C11 atomic types:David Chisnall
2012-01-14constexpr irgen: Add irgen support for APValue::Struct, APValue::Union,Richard Smith
2012-01-01Eliminate ObjCForwardProtocolDecl, which is redundant now thatDouglas Gregor
2011-12-30Unrevert r147271, reverted in r147361.Richard Smith
2011-12-27Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDeclDouglas Gregor
2011-12-03Switch LValue so that it exposes alignment in CharUnits. (No functional chan...Eli Friedman
2011-12-02Introduce a module import declaration, so that we properly represent, e.g.,Douglas Gregor
2011-12-02Fix wrong-code bug when a const automatic variable of struct type has both aRichard Smith
2011-11-29The cheap version of getName() is sufficient here.Benjamin Kramer
2011-11-21CodeGen: Simplify code.Benjamin Kramer
2011-11-20CodeGen: allow __asm renaming on static local variables.Benjamin Kramer
2011-11-10Enter the cleanups for a block outside the enclosingJohn McCall
2011-11-03Fix the alignment on scalar parameter variables so that it matches what the A...Eli Friedman
2011-09-27de-tmpify clang.Benjamin Kramer
2011-09-23Switch assert(0/false) llvm_unreachable.David Blaikie
2011-09-19OpenCL: introduce support for function scope __local variablesPeter Collingbourne
2011-09-13Switch LangOptions over to a .def file that describes header of theDouglas Gregor
2011-09-09Bring llvm.annotation* intrinsics support back to where it was in llvm-gcc: canJulien Lerouge
2011-08-25Track whether an AggValueSlot is potentially aliased, and do notJohn McCall
2011-08-25Use stronger typing for the flags on AggValueSlot and requireJohn McCall
2011-08-25blocks - capturing logic of byref block variable's expression Fariborz Jahanian
2011-08-24Make constant aggregate constant initializers private linkage.Eric Christopher
2011-08-23Whitespace and 80-col cleanup.Eric Christopher
2011-08-23Whitespace.Eric Christopher
2011-08-23checking for __block variable captured by givenFariborz Jahanian
2011-08-23block IRgen - Fixes a crash when determining if given block variableFariborz Jahanian
2011-08-14Implement function template specialization at class scope extension in Micros...Francois Pichet
2011-07-28Fix a couple of problems with initialization and assignment toJohn McCall
2011-07-25Rename getInstantiationLineNumber to getExpansionLineNumber in bothChandler Carruth