fixed inliner, version updated
This commit is contained in:
@@ -2386,7 +2386,7 @@ static void convertLinesToAbsolute(const map<string, vector<FuncInfo*>>& allFunc
|
||||
if (detCall.detailCallsFrom == make_pair(funcToInl, targetLine) &&
|
||||
added.find(make_tuple(file, funcToInl, targetLine)) == added.end())
|
||||
{
|
||||
__spf_print(1, "%s %d (was %d) %s\n", funcToInl, targetLine, std::get<2>(inDataProc[z]), funcByFile.first.c_str());
|
||||
__spf_print(1, "%s %d (was %d) %s\n", funcToInl.c_str(), targetLine, std::get<2>(inDataProc[z]), funcByFile.first.c_str());
|
||||
added.insert(make_tuple(file, funcToInl, targetLine));
|
||||
absoluteLine = targetLine;
|
||||
break;
|
||||
|
||||
@@ -2918,7 +2918,7 @@ private:
|
||||
{
|
||||
#ifdef _MSC_VER
|
||||
ret = pipe(pipes, 1024 * 1024 * 20, O_BINARY); // 20 MB
|
||||
#else
|
||||
#else
|
||||
ret = pipe(pipes) == -1;
|
||||
fcntl(*pipes, F_SETPIPE_SZ, 1024 * 1024 * 20);
|
||||
#endif
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
#pragma once
|
||||
|
||||
#define VERSION_SPF "2255"
|
||||
#define VERSION_SPF "2256"
|
||||
|
||||
Reference in New Issue
Block a user