summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen/builtin-attributes.c
Commit message (Collapse)AuthorAgeFilesLines
* 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