Lionel Sambuc 0a6a1f1d05 NetBSD re-synchronization of the source tree
This brings our tree to NetBSD 7.0, as found on -current on the
10-10-2015.

This updates:
 - LLVM to 3.6.1
 - GCC to GCC 5.1
 - Replace minix/commands/zdump with usr.bin/zdump
 - external/bsd/libelf has moved to /external/bsd/elftoolchain/
 - Import ctwm
 - Drop sprintf from libminc

Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
2016-01-13 20:32:14 +01:00

44 lines
932 B
C

// RUN: %clang_cc1 -triple nvptx-unknown-unknown -S -o - %s -emit-llvm | FileCheck %s
// RUN: %clang_cc1 -triple nvptx64-unknown-unknown -S -o - %s -emit-llvm | FileCheck %s
typedef struct float4_s {
float x, y, z, w;
} float4_t;
float4_t my_function(void) {
// CHECK-LABEL: define %struct.float4_s @my_function
float4_t t;
return t;
};
float bar(void) {
float4_t ret;
// CHECK-LABEL: @bar
// CHECK: call %struct.float4_s @my_function
ret = my_function();
return ret.x;
}
void foo(float4_t x) {
// CHECK-LABEL: @foo
// CHECK: %struct.float4_s* byval %x
}
void fooN(float4_t x, float4_t y, float4_t z) {
// CHECK-LABEL: @fooN
// CHECK: %struct.float4_s* byval %x
// CHECK: %struct.float4_s* byval %y
// CHECK: %struct.float4_s* byval %z
}
typedef struct nested_s {
unsigned long long x;
float z[64];
float4_t t;
} nested_t;
void baz(nested_t x) {
// CHECK-LABEL: @baz
// CHECK: %struct.nested_s* byval %x)
}