Skip to content

Commit 6c436e4

Browse files
authored
fix to build with Intel compiler
1 parent 55710ca commit 6c436e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/inc/Machine.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ of the License or (at your option) any later version.
4646
#endif
4747
#else
4848
#define HOT __attribute__((hot))
49-
#if defined(__x86_64)
49+
#if defined(__x86_64) && !defined(__INTEL_COMPILER)
5050
#define REGPARM(n) __attribute__((hot, regparm(n)))
5151
#else
5252
#define REGPARM(n)

0 commit comments

Comments
 (0)