f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
17 lines
440 B
C
17 lines
440 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-DAG: declare %struct.float4_s @my_function
|
|
|
|
float bar(void) {
|
|
float4_t ret;
|
|
// CHECK-DAG: call %struct.float4_s @my_function
|
|
ret = my_function();
|
|
return ret.x;
|
|
}
|