Skip to content

Commit 66142bd

Browse files
paigealeigcbot
authored andcommitted
Changes in code.
1 parent 1362ec5 commit 66142bd

File tree

1 file changed

+11
-0
lines changed
  • IGC/AdaptorCommon/API

1 file changed

+11
-0
lines changed

IGC/AdaptorCommon/API/igc.h

+11
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,17 @@ typedef struct {
8484
#define SetSimdSpill(MODE, stats) (stats = (stats | (BIT_CG_SIMD##MODE) | (BIT_CG_SPILL##MODE)))
8585
#define SetSimdNoSpill(MODE, stats) (stats = (stats | (BIT_CG_SIMD##MODE) & ~(BIT_CG_SPILL##MODE)))
8686

87+
#define IGC_SHIM_LEGACY_LLVM_VERSION 9
88+
#define IGC_SHIM_DEFAULT_LLVM_VERSION 14
89+
#define IGC_SHIM_NEXT_LLVM_VERSION 15
90+
91+
#if defined(_WIN64) || defined(__x86_64__) // 64-bit
92+
#define IGC_DLL_POSTFIX "64.dll"
93+
#else // 32-bit
94+
#define IGC_DLL_POSTFIX "32.dll"
95+
#endif
96+
97+
8798
typedef enum CG_FLAG_t {
8899
FLAG_CG_ALL_SIMDS = 0,
89100
FLAG_CG_STAGE1_FAST_COMPILE = 1,

0 commit comments

Comments
 (0)