Daniel Dunbar | ffd408a | 2009-03-24 02:24:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -triple i386-apple-darwin9 -emit-llvm -o %t %s && |
Daniel Dunbar | 9f052cb | 2009-03-11 22:05:26 +0000 | [diff] [blame] | 2 | // RUN: grep 'define signext i8 @f0()' %t && |
| 3 | // RUN: grep 'define signext i16 @f1()' %t && |
| 4 | // RUN: grep 'define i32 @f2()' %t && |
| 5 | // RUN: grep 'define float @f3()' %t && |
| 6 | // RUN: grep 'define double @f4()' %t && |
| 7 | // RUN: grep 'define x86_fp80 @f5()' %t && |
| 8 | // RUN: grep 'define void @f6(i8 signext %a0, i16 signext %a1, i32 %a2, i64 %a3, i8\* %a4)' %t && |
| 9 | // RUN: grep 'define void @f7(i32 %a0)' %t && |
| 10 | // RUN: grep 'define i64 @f8_1()' %t && |
| 11 | // RUN: grep 'define void @f8_2(i32 %a0.0, i32 %a0.1)' %t && |
| 12 | // RUN: grep 'define i64 @f9_1()' %t && |
| 13 | |
| 14 | // FIXME: This is wrong, but we want the coverage of the other |
| 15 | // tests. This should be the same as @f8_2. |
| 16 | // RUN: grep 'define void @f9_2(%.truct.s9\* byval %a0)' %t && |
| 17 | |
Daniel Dunbar | 9f052cb | 2009-03-11 22:05:26 +0000 | [diff] [blame] | 18 | char f0(void) { |
| 19 | } |
| 20 | |
| 21 | short f1(void) { |
| 22 | } |
| 23 | |
| 24 | int f2(void) { |
| 25 | } |
| 26 | |
| 27 | float f3(void) { |
| 28 | } |
| 29 | |
| 30 | double f4(void) { |
| 31 | } |
| 32 | |
| 33 | long double f5(void) { |
| 34 | } |
| 35 | |
| 36 | void f6(char a0, short a1, int a2, long long a3, void *a4) { |
| 37 | } |
| 38 | |
| 39 | typedef enum { A, B, C } E; |
| 40 | |
| 41 | void f7(E a0) { |
| 42 | } |
| 43 | |
| 44 | struct s8 { |
| 45 | int a; |
| 46 | int b; |
| 47 | }; |
| 48 | struct s8 f8_1(void) { |
| 49 | } |
| 50 | void f8_2(struct s8 a0) { |
| 51 | } |
| 52 | |
| 53 | // This should be passed just as s8. |
| 54 | |
| 55 | // FIXME: This is currently broken, but the test case is accepting it |
| 56 | // so we get coverage of the other cases. |
| 57 | struct s9 { |
| 58 | int a : 17; |
| 59 | int b; |
| 60 | }; |
| 61 | struct s9 f9_1(void) { |
| 62 | } |
| 63 | void f9_2(struct s9 a0) { |
| 64 | } |
| 65 | |
Daniel Dunbar | a744642 | 2009-03-31 19:01:39 +0000 | [diff] [blame] | 66 | // Return of small structures and unions... |
| 67 | |
| 68 | // RUN: grep 'float @f10()' %t && |
| 69 | struct s10 { |
| 70 | union { }; |
| 71 | float f; |
| 72 | } f10(void) {} |
| 73 | |
Daniel Dunbar | 2a7bb3f | 2009-04-01 06:13:08 +0000 | [diff] [blame^] | 74 | // Small vectors and 1 x {i64,double} are returned in registers... |
Daniel Dunbar | a744642 | 2009-03-31 19:01:39 +0000 | [diff] [blame] | 75 | |
Daniel Dunbar | 2a7bb3f | 2009-04-01 06:13:08 +0000 | [diff] [blame^] | 76 | // RUN: grep 'i32 @f11()' %t && |
| 77 | // RUN: grep -F 'void @f12(<2 x i32>* noalias sret %agg.result)' %t && |
| 78 | // RUN: grep 'i64 @f13()' %t && |
| 79 | // RUN: grep 'i64 @f14()' %t && |
| 80 | typedef short T11 __attribute__ ((vector_size (4))); |
| 81 | T11 f11(void) {} |
| 82 | typedef int T12 __attribute__ ((vector_size (8))); |
| 83 | T12 f12(void) {} |
| 84 | typedef long long T13 __attribute__ ((vector_size (8))); |
| 85 | T13 f13(void) {} |
| 86 | typedef double T14 __attribute__ ((vector_size (8))); |
| 87 | T14 f14(void) {} |
| 88 | |
| 89 | // RUN: true |