From e85f49a57e64355a5477e4e936e097d526452882 Mon Sep 17 00:00:00 2001 From: Alex Voicu Date: Tue, 28 Nov 2017 19:56:04 +0000 Subject: [PATCH] Remove leftover agent allocated globals. [ROCm/clr commit: 45a9f4f7b1d42dc52377961a34de7f5b10c56df8] --- projects/clr/hipamd/src/device_functions.cpp | 21 -------------------- 1 file changed, 21 deletions(-) diff --git a/projects/clr/hipamd/src/device_functions.cpp b/projects/clr/hipamd/src/device_functions.cpp index b888bde5d5..396b5b0594 100644 --- a/projects/clr/hipamd/src/device_functions.cpp +++ b/projects/clr/hipamd/src/device_functions.cpp @@ -28,27 +28,6 @@ extern "C" float __ocml_rint_f32(float); extern "C" float __ocml_ceil_f32(float); extern "C" float __ocml_trunc_f32(float); -struct holder64Bit{ - union{ - double d; - unsigned long int uli; - signed long int sli; - signed int si[2]; - unsigned int ui[2]; - }; -} __attribute__((aligned(8))); - -struct holder32Bit { - union { - float f; - unsigned int ui; - signed int si; - }; -} __attribute__((aligned(4))); - -__device__ struct holder64Bit hold64; -__device__ struct holder32Bit hold32; - __device__ float __double2float_rd(double x) { return (double)x;