* plugin/cuda/cuda.h (CUdeviceptr): Typedef to unsigned long long even
for _WIN64.
From-SVN: r244638
+2017-01-19 Jakub Jelinek <jakub@redhat.com>
+
+ * plugin/cuda/cuda.h (CUdeviceptr): Typedef to unsigned long long even
+ for _WIN64.
+
2017-01-17 Jakub Jelinek <jakub@redhat.com>
* plugin/hsa.h: Add GCC runtime library exception.
typedef void *CUcontext;
typedef int CUdevice;
-#ifdef __LP64__
+#if defined(__LP64__) || defined(_WIN64)
typedef unsigned long long CUdeviceptr;
#else
typedef unsigned CUdeviceptr;