diff options
| author | tgrogers <[email protected]> | 2018-11-20 15:34:03 -0500 |
|---|---|---|
| committer | tgrogers <[email protected]> | 2018-11-20 15:34:03 -0500 |
| commit | c2917b4c93a84a6645aa7d7c5ac1c389b3369586 (patch) | |
| tree | f3e1627841148572144d2fedd5bdcf92bdf5de51 /src/cuda-sim/cuda-sim.cc | |
| parent | cd41906f85a3835947de70f33f231565e445b565 (diff) | |
Fixing the compile in gcc 4.4.x
Diffstat (limited to 'src/cuda-sim/cuda-sim.cc')
| -rw-r--r-- | src/cuda-sim/cuda-sim.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cuda-sim/cuda-sim.cc b/src/cuda-sim/cuda-sim.cc index 3773f6f..ec68b5b 100644 --- a/src/cuda-sim/cuda-sim.cc +++ b/src/cuda-sim/cuda-sim.cc @@ -1308,7 +1308,7 @@ void function_info::list_param( FILE *fout ) const void function_info::ptx_jit_config(std::map<unsigned long long, size_t> mallocPtr_Size, memory_space *param_mem, gpgpu_t* gpu, dim3 gridDim, dim3 blockDim) { - static unsigned long counter = 0; + static unsigned long long counter = 0; std::vector< std::pair<size_t, unsigned char*> > param_data; std::vector<unsigned> offsets; std::vector<bool> paramIsPointer; |
