Clang Project

clang_source_code/test/SemaCUDA/amdgpu-size_t.cu
1// RUN: %clang_cc1 -triple amdgcn-amd-amdhsa -aux-triple x86_64-pc-windows-msvc -fms-compatibility -fcuda-is-device -fsyntax-only -verify %s
2
3// expected-no-diagnostics
4typedef unsigned __int64 size_t;
5typedef __int64 intptr_t;
6typedef unsigned __int64 uintptr_t;
7
8