blob: 7b2f2afbd9cad5289b8402e15de791d8d04fcef5 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify -pedantic -triple=i686-apple-darwin9
Eli Friedman14352022008-05-25 04:43:38 +00002// This test needs to set the target because it uses __builtin_ia32_vec_ext_v4si
Chris Lattner1b9a0792007-12-20 00:26:33 +00003
4int test1(float a, int b) {
5 return __builtin_isless(a, b);
6}
7int test2(int a, int b) {
8 return __builtin_islessequal(a, b); // expected-error {{floating point type}}
9}
10
11int test3(double a, float b) {
12 return __builtin_isless(a, b);
13}
14int test4(int* a, double b) {
15 return __builtin_islessequal(a, b); // expected-error {{floating point type}}
16}
17
18int test5(float a, long double b) {
19 return __builtin_isless(a, b, b); // expected-error {{too many arguments}}
20}
21int test6(float a, long double b) {
22 return __builtin_islessequal(a); // expected-error {{too few arguments}}
23}
24
25
26#define CFSTR __builtin___CFStringMakeConstantString
Chris Lattner5caa3702009-05-08 06:58:22 +000027void test7() {
Chris Lattner634785c2009-12-30 22:10:22 +000028 const void *X;
29 X = CFSTR("\242");
30 X = CFSTR("\0"); // expected-warning {{ CFString literal contains NUL character }}
31 X = CFSTR(242); // expected-error {{ CFString literal is not a string constant }} expected-warning {{incompatible integer to pointer conversion}}
32 X = CFSTR("foo", "bar"); // expected-error {{too many arguments to function call}}
Chris Lattner1b9a0792007-12-20 00:26:33 +000033}
34
Chris Lattner95e2c712008-05-05 22:18:14 +000035
Chris Lattner5caa3702009-05-08 06:58:22 +000036// atomics.
37
Mike Stumpd1969d82009-07-22 00:43:08 +000038void test9(short v) {
Chris Lattner5caa3702009-05-08 06:58:22 +000039 unsigned i, old;
40
41 old = __sync_fetch_and_add(); // expected-error {{too few arguments to function call}}
42 old = __sync_fetch_and_add(&old); // expected-error {{too few arguments to function call}}
Chris Lattnere7ac0a92009-05-08 15:36:58 +000043 old = __sync_fetch_and_add((int**)0, 42i); // expected-warning {{imaginary constants are an extension}}
Chris Lattner5caa3702009-05-08 06:58:22 +000044}
Chris Lattner21190d52009-09-21 03:09:59 +000045
46
47// rdar://7236819
48void test10(void) __attribute__((noreturn));
49
50void test10(void) {
51 __asm__("int3");
52 __builtin_unreachable();
53
54 // No warning about falling off the end of a noreturn function.
55}
Chris Lattner21fb98e2009-09-23 06:06:36 +000056
57void test11(int X) {
58 switch (X) {
59 case __builtin_eh_return_data_regno(0): // constant foldable.
60 break;
61 }
62
63 __builtin_eh_return_data_regno(X); // expected-error {{not an integer constant expression}}
64}
65
Chris Lattner50dd2552009-09-26 21:16:00 +000066// PR5062
67void test12(void) __attribute__((__noreturn__));
68void test12(void) {
69 __builtin_trap(); // no warning because trap is noreturn.
70}
Douglas Gregor9a8c9a22009-09-28 21:14:19 +000071
72void test_unknown_builtin(int a, int b) {
73 __builtin_foo(a, b); // expected-error{{use of unknown builtin}}
74}