xref: /llvm-project/clang/test/SemaCUDA/amdgpu-size_t.cu (revision 95f2ca541f2840ae78a1d5723e53505adb2b0197)
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
4 typedef unsigned __int64 size_t;
5 typedef __int64 intptr_t;
6 typedef unsigned __int64 uintptr_t;
7 
8