summaryrefslogtreecommitdiffstats
path: root/clang/lib/AST/Builtins.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix for PR3350: add special-casing for "references" to va_lists in Eli Friedman2009-01-201-0/+17
| | | | | | | | builtins. Also, a minor tweak to va_copy for consistency. llvm-svn: 62574
* Don't give a default argument to ASTContext::getFunctionType for the ↵Argyrios Kyrtzidis2008-10-261-1/+1
| | | | | | | | | TypeQuals parameter, it causes subtle bugs where TypeQuals, while necessary, are omitted from the call. -Remove the default argument. -Update all call sites of ASTContext::getFunctionType. llvm-svn: 58187
* Make llvm memory barrier available as an intrinsicMon P Wang2008-10-181-0/+4
| | | | llvm-svn: 57751
* Fix va_arg handling to do argument decaying at the correct place. ThisChris Lattner2008-09-291-5/+9
| | | | | | | fixes problems handling references of va_list, which happens on x86_64. This fixes PR2841 and rdar://6252231 llvm-svn: 56809
* Fix rdar://6252231 - cannot call vsnprintf with va_list on x86_64,Chris Lattner2008-09-281-0/+3
| | | | | | | | by decaying __builtin_va_list's type when forming builtins. On x86-64 (and other targets) __builtin_va_list is a typedef for an array. llvm-svn: 56768
* More #include cleaningDaniel Dunbar2008-08-111-0/+1
| | | | | | | | - Drop Expr.h,RecordLayout.h from ASTContext.h (for DeclBase.h and SourceLocation.h) - Move ASTContext constructor into implementation llvm-svn: 54627
* Make a major restructuring of the clang tree: introduce a top-levelChris Lattner2008-03-151-0/+195
lib dir and move all the libraries into it. This follows the main llvm tree, and allows the libraries to be built in parallel. The top level now enforces that all the libs are built before Driver, but we don't care what order the libs are built in. This speeds up parallel builds, particularly incremental ones. llvm-svn: 48402
OpenPOWER on IntegriCloud