mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Debugging helpers
This commit is contained in:
parent
f1b685b4c7
commit
0b02483971
2 changed files with 5 additions and 1 deletions
|
@ -495,7 +495,11 @@ public:
|
|||
BE_VALUE_TYPE(BeFunction, BeConstant);
|
||||
|
||||
BeModule* mModule;
|
||||
#ifdef _DEBUG
|
||||
StringT<256> mName;
|
||||
#else
|
||||
String mName;
|
||||
#endif
|
||||
BfIRLinkageType mLinkageType;
|
||||
bool mAlwaysInline;
|
||||
bool mNoUnwind;
|
||||
|
|
|
@ -304,7 +304,7 @@ void BfCodeGenThread::RunLoop()
|
|||
auto cacheDir = GetFileDir(request->mOutFileName);
|
||||
auto cacheFileName = GetFileName(request->mOutFileName);
|
||||
|
||||
String objFileName = request->mOutFileName + BF_OBJ_EXT;
|
||||
StringT<256> objFileName = request->mOutFileName + BF_OBJ_EXT;
|
||||
|
||||
bool hasCacheMatch = false;
|
||||
BfCodeGenDirectoryData* dirCache = NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue