aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Expand)Author
2009-12-11Member function templates can occur after . or ->Douglas Gregor
2009-12-11Fix for PR5706: let mangleName deal with mangling names without identifiersEli Friedman
2009-12-11Tweak code-completion results by suppressing class templateDouglas Gregor
2009-12-11Move info vectors and add assertions in preparation of moving the vector dire...Anders Carlsson
2009-12-11Use GetAddrOfRTTI when getting the RTTI pointer for a base class.Anders Carlsson
2009-12-11Class template (partial) specializations should not show up in code completio...Douglas Gregor
2009-12-11Random string-related cleanups.Benjamin Kramer
2009-12-11Use StringRef.getAsInteger instead of temporary string + strtol. No intended ...Benjamin Kramer
2009-12-11Move the code for converting a member pointer to a bool so that it is usableEli Friedman
2009-12-11Fix for PR5718: implement equality comparisons for member function pointers.Eli Friedman
2009-12-11Enhance understanding of VarRegions referenced by a block whose declarations ...Ted Kremenek
2009-12-11Completely evaluate malloc/free in MallocChecker.cpp.Zhongxing Xu
2009-12-11Improve linkage of RTTI data structures. Introduce CodeGenModule::GetAddrOfRT...Anders Carlsson
2009-12-11Fix a recent regression from the initialization changes.Eli Friedman
2009-12-11Check if the target of a using decl is already declared in this scope beforeJohn McCall
2009-12-11Implement access declarations. Most of the work here is parsing them, whichJohn McCall
2009-12-11Fix the handling of dependent enums per C++ DR 502.Eli Friedman
2009-12-11Use named flags in RTTIBuilder::BuildPointerType.Anders Carlsson
2009-12-11When extending the lifetime of a temporary, make sure to emit a branch to the...Anders Carlsson
2009-12-11Use 'class' instead of 'struct'.Zhongxing Xu
2009-12-11When an exception needs to be freed by calling __cxa_exception_free, make sur...Anders Carlsson
2009-12-11FileManager: Do not cache failed stats, it is easy to construct commonDaniel Dunbar
2009-12-11Patch to fix a crash trying to access a category name inFariborz Jahanian
2009-12-11Implement just a bit more of inline assembly.Mike Stump
2009-12-11Fix spacing.Mike Stump
2009-12-10Don't complain about falling off the end of a function with an asmMike Stump
2009-12-10Support unary type traits in a scalar context. Not that I've actually seenEli Friedman
2009-12-10Clean up enum constants so that they're finally sane. Fixes PR3173 and aEli Friedman
2009-12-10Make sure that explicitly instantiated functions get the right linkage.Anders Carlsson
2009-12-10Privatize class members.Benjamin Kramer
2009-12-10Add support for finding composite type of twp objective-c pointersFariborz Jahanian
2009-12-10Improve the diagnostic when a new declaration conflicts with a using shadowJohn McCall
2009-12-10Move composite type finding of two objective-c expressions Fariborz Jahanian
2009-12-10Implement C++ DR437, which involves exception-specifications that nameDouglas Gregor
2009-12-10Move initialization via initializer list over to InitializationSequences.Douglas Gregor
2009-12-10Implement redeclaration checking and hiding semantics for using declarations....John McCall
2009-12-10Fix for PR5515: allow "merging" array bounds both forwards and backwards.Eli Friedman
2009-12-10Mangle static variables inside Objective-C methods in Objective-C++. We curre...Anders Carlsson
2009-12-10Get rid of static variable.Eli Friedman
2009-12-10If we enter parens, colons can become un-sacred, allowing us to emitChris Lattner
2009-12-10fix a more evil case of : / :: confusion arising in ?:.Chris Lattner
2009-12-10fix incorrect parsing of bitfields pointed out by Doug. I choseChris Lattner
2009-12-10Actually store the pointer into the global variable, spotted by Eli.Anders Carlsson
2009-12-10Setup cleanup on eh edge out of the construction of the cleanup objectMike Stump
2009-12-10minimal fix for PR5743Chris Lattner
2009-12-10Handle emitting static variables that have reference type.Anders Carlsson
2009-12-10Separate generating code for static variables and global variables.Anders Carlsson
2009-12-10Second half of r91023, saving files is good.Chris Lattner
2009-12-10move GreaterThanIsOperatorScope into RAIIObjectsForParser. Add some moreChris Lattner
2009-12-10fix PR5740: a colon is sacred when parsing case statement expressions!Chris Lattner