Skip to content

Commit

Permalink
Update for macro name change
Browse files Browse the repository at this point in the history
  • Loading branch information
gartung committed May 13, 2022
1 parent fe4a38f commit 8866ca6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FWCore/Utilities/interface/CMSUnrollLoop.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@

#elif defined(__INTEL_COMPILER)
// Intel icc compiler
#define CMS_UNROLL_LOOP _Pragma(STRINGIFY(unroll))
#define CMS_UNROLL_LOOP_COUNT(N) _Pragma(STRINGIFY(unroll(N)))
#define CMS_UNROLL_LOOP_DISABLE _Pragma(STRINGIFY(nounroll))
#define CMS_UNROLL_LOOP _Pragma(EDM_STRINGIFY(unroll))
#define CMS_UNROLL_LOOP_COUNT(N) _Pragma(EDM_STRINGIFY(unroll(N)))
#define CMS_UNROLL_LOOP_DISABLE _Pragma(EDM_STRINGIFY(nounroll))

#elif defined(__GNUC__)
// GCC host compiler
Expand Down

0 comments on commit 8866ca6

Please sign in to comment.