Skip to content

Commit 60b593a

Browse files
Address review comment
1 parent a23deff commit 60b593a

File tree

2 files changed

+0
-16
lines changed

2 files changed

+0
-16
lines changed

sycl/include/sycl/detail/defines_elementary.hpp

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -105,20 +105,6 @@
105105
#define __SYCL_WARNING(msg) __pragma(message(msg))
106106
#endif // __GNUC__
107107

108-
// Define __SYCL_UNROLL to add pragma/attribute unroll to a loop.
109-
#ifndef __SYCL_UNROLL
110-
#if defined(__INTEL_COMPILER) || defined(__INTEL_LLVM_COMPILER)
111-
#define __SYCL_UNROLL(x) _Pragma(__SYCL_STRINGIFY(unroll x))
112-
#elif defined(__clang__)
113-
#define __SYCL_UNROLL(x) _Pragma(__SYCL_STRINGIFY(unroll x))
114-
#elif (defined(__GNUC__) && __GNUC__ >= 8) || \
115-
(defined(__GNUG__) && __GNUG__ >= 8)
116-
#define __SYCL_UNROLL(x) _Pragma(__SYCL_STRINGIFY(GCC unroll x))
117-
#else
118-
#define __SYCL_UNROLL(x)
119-
#endif // compiler switch
120-
#endif // __SYCL_UNROLL
121-
122108
#if !defined(SYCL_DISABLE_CPP_VERSION_CHECK_WARNING) && __cplusplus < 201703L
123109

124110
#if defined(_MSC_VER) && !defined(__clang__)

sycl/test/gdb/accessors-device.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// UNSUPPORTED: windows
33
#include <sycl/sycl.hpp>
44

5-
typedef sycl::accessor<int, 1, sycl::access::mode::read> dummy;
6-
75
using namespace sycl;
86

97
int main() {

0 commit comments

Comments
 (0)