summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaExpr.cpp
Commit message (Expand)AuthorAgeFilesLines
* move library-specific diagnostic headers into library private dirs. ReduceChris Lattner2009-01-291-1/+0
* Refactor Sema::LookupDecl() into 2 functions: LookupDeclInScope() and LookupD...Steve Naroff2009-01-291-4/+4
* Code generation support for C99 designated initializers.Douglas Gregor2009-01-281-3/+2
* Remove 'NamespaceNameOnly' argument to Sema::LookupDecl(). It is unused.Steve Naroff2009-01-281-1/+1
* Split the single monolithic DiagnosticKinds.def file into oneChris Lattner2009-01-271-1/+1
* rename getSpelledCharacterAt to getSpellingOfSingleCharacterNumericConstant,Chris Lattner2009-01-261-1/+1
* PR3269: create an empty InitListExpr as a child for the Eli Friedman2009-01-261-3/+7
* PR3062: statement expressions should be illegal at file scope. I don't Eli Friedman2009-01-241-0/+5
* Implement C99 6.5.3.4p1, rejecting sizeof(bitfield)Chris Lattner2009-01-241-4/+8
* Fix PR3386 by handling GCC's rules for alignof, which are substantiallyChris Lattner2009-01-241-1/+28
* fix a fixme, don't leak the expr on error.Chris Lattner2009-01-241-5/+10
* minor formatting changes, no functionality change.Chris Lattner2009-01-241-11/+15
* Make sure that all NamedDecls have an identifier namespace.Douglas Gregor2009-01-231-2/+4
* Allow subtraction of function pointer types in C, as a GNU extension. Fixes r...Douglas Gregor2009-01-231-0/+11
* Support arithmetic on pointer-to-function types as a GNUDouglas Gregor2009-01-231-4/+39
* Convert expressions over to Sebastian's spiffy ASTContext::new() operator.Steve Naroff2009-01-211-113/+106
* Provide a placement new taking an ASTContext argument.Sebastian Redl2009-01-201-8/+6
* Convert more exprs to use ASTContext's Allocator.Steve Naroff2009-01-201-11/+18
* Allocate expresssions through ASTContext (still more work to do).Steve Naroff2009-01-201-23/+36
* Remove ScopedDecl, collapsing all of its functionality into Decl, soDouglas Gregor2009-01-201-7/+6
* Convert more expression actions to smart pointers.Sebastian Redl2009-01-191-62/+73
* Centralize error reporting of improper uses of incomplete types in theDouglas Gregor2009-01-191-19/+33
* Convert more expression actions to smart pointers.Sebastian Redl2009-01-191-161/+187
* Convert a few expression actions to smart pointers.Sebastian Redl2009-01-181-113/+119
* Support evaluation of vector constant expressions, and codegen of same.Nate Begeman2009-01-181-5/+6
* Update support for vector component access on ExtVectors.Nate Begeman2009-01-181-38/+39
* Remove outdated diagnostic. Tests are coming.Nate Begeman2009-01-181-11/+1
* minor cleanups to StringLiteralParser: no need to pass target infoChris Lattner2009-01-161-7/+1
* Use a single function for doing vararg argument promotion. Also, make sure to...Anders Carlsson2009-01-161-12/+22
* rename PP::getPhysicalCharacterAt -> PP::getSpelledCharacterAt.Chris Lattner2009-01-161-4/+4
* PR2746: Implement GCC cast to union extensionSeo Sanghyeon2009-01-151-8/+23
* Initial implementation of member name lookupDouglas Gregor2009-01-151-6/+24
* Refactor name lookup.Douglas Gregor2009-01-141-1/+1
* Introduce support for C++0x explicit conversion operators (N2437)Douglas Gregor2009-01-141-7/+7
* Implemenent objective-c's NSObject attribute as a way of ddeclaraing c-typeFariborz Jahanian2009-01-131-1/+8
* PTH:Ted Kremenek2009-01-131-3/+3
* Use the unqualified type for GCCs struct/union cast extensionAnders Carlsson2009-01-131-2/+2
* Warn when someone tries to pass a variable with a non-POD type to a varargs f...Anders Carlsson2009-01-131-0/+11
* Patch to supprt case of readonly property being Fariborz Jahanian2009-01-121-1/+24
* Revert my previous, failed attempt to pretty-print anonymous struct/union acc...Douglas Gregor2009-01-081-4/+0
* Fix printing of member references to avoid displaying implicitly-generated me...Douglas Gregor2009-01-071-0/+4
* Initial implementation of anonymous unions (and, as a GNU extension,Douglas Gregor2009-01-071-3/+152
* Add QualifiedDeclRefExpr, which retains additional source-locationDouglas Gregor2009-01-061-16/+34
* Remainder is only valid on integer vector operands.Daniel Dunbar2009-01-051-2/+5
* Use CheckVectorOperands when % is applied to a vector type.Daniel Dunbar2009-01-051-4/+3
* Correct the order in which we cope with end-of-class-definitionDouglas Gregor2008-12-241-7/+8
* Don't explicitly represent OverloadedFunctionDecls withinDouglas Gregor2008-12-231-20/+20
* Add support for calls to overloaded member functions. Things to note:Douglas Gregor2008-12-221-77/+161
* Add support for member references (E1.E2, E1->E2) with C++ semantics,Douglas Gregor2008-12-201-21/+43
* Implement checks for bool in increment and decrement.Sebastian Redl2008-12-201-5/+15
OpenPOWER on IntegriCloud