Mercurial > hg > CbC > CbC_llvm
view clang/test/CodeGenCUDA/norecurse.cu @ 173:0572611fdcc8 llvm10 llvm12
reorgnization done
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 11:55:54 +0900 |
parents | |
children |
line wrap: on
line source
// REQUIRES: amdgpu-registered-target // REQUIRES: nvptx-registered-target // RUN: %clang_cc1 -triple nvptx-nvidia-cuda -fcuda-is-device \ // RUN: -emit-llvm -disable-llvm-passes -o - %s | FileCheck %s // RUN: %clang_cc1 -triple amdgcn-amd-amdhsa -fcuda-is-device \ // RUN: -emit-llvm -disable-llvm-passes -o - -x hip %s | FileCheck %s #include "Inputs/cuda.h" __global__ void kernel1(int a) {} // CHECK: define{{.*}}@_Z7kernel1i{{.*}}#[[ATTR:[0-9]*]] // CHECK: attributes #[[ATTR]] = {{.*}}norecurse