summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen/nvptx-abi.c
blob: f846def2de520bef796f8eb2a1e4a42732ebef90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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;
}
OpenPOWER on IntegriCloud