summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen/builtin-attributes.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix testcases to not rely upon target-* attributes.Bill Wendling2013-02-261-2/+1
| | | | llvm-svn: 176135
* Revert "Add more attributes from the command line to functions."Anna Zaks2013-02-251-1/+2
| | | | | | | | This reverts commit 176009. The commit is a likely cause of several buildbot failures. llvm-svn: 176044
* Add more attributes from the command line to functions.Bill Wendling2013-02-251-2/+1
| | | | | | | This is an ongoing process. Any command line option which a back-end cares about should be added here. llvm-svn: 176009
* Update to use references to attribute groups instead of listing the ↵Bill Wendling2013-02-221-1/+4
| | | | | | attributes on the call/invoke instructions. llvm-svn: 175878
* Tests: check for target availability for target-specific tests.Jim Grosbach2012-07-091-0/+1
| | | | | | | | Lots of tests are using an explicit target triple w/o first checking that the target is actually available. Add a REQUIRES clause to a bunch of them. This should hopefully unbreak bots which don't configure w/ all targets enabled. llvm-svn: 159949
* The frexp, modf, and remquo builtins are not 'const'.Jakob Stoklund Olesen2011-09-081-0/+41
| | | | | | | | | | These functions return a second value by writing to a pointer argument, so they cannot be marked 'readnone' which implies that they don't access memory. <rdar://problem/10070234> llvm-svn: 139319
* Make sure we aggressively attach nounwind (etc.) to calls to libraryEli Friedman2011-03-241-0/+5
| | | | | | functions of the form __builtin_XXX. llvm-svn: 128198
* Change the test for which ABI/CC to use on ARM to be base on the environmentRafael Espindola2010-06-161-1/+1
| | | | | | (the last argument of the triple). llvm-svn: 106131
* Fix tests that I missed from my previous commit.Rafael Espindola2010-06-161-2/+2
| | | | llvm-svn: 106118
* Revert changes r97693, r97700, and r97718.John McCall2010-03-041-2/+0
| | | | | | Our testing framework can't deal with disabled targets yet. llvm-svn: 97719
* XFAIL these tests on win32, since the win32 buildbot apparently disables allJohn McCall2010-03-041-0/+2
| | | | | | targets except X86. llvm-svn: 97718
* Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar2009-12-151-1/+1
| | | | | | | | | - This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
* Fix subtle bug in generating LLVM function declarations for builtin functions.Daniel Dunbar2009-09-141-0/+12
The decl wasn't being passed down, which meant that function attributes were not being set correctly. This is particularly important for ARM, since it wants to override the calling convention. Instead we would emit the builtin with the wrong calling convention, and instcombine would come along and merrily shred all the calls to it. :) llvm-svn: 81756
OpenPOWER on IntegriCloud