ELF reader refactor

Change-Id: I326747237ba605f338d3f2c91a6b682db8b75af5
This commit is contained in:
Kamil Diedrich
2018-08-13 08:33:10 +02:00
committed by sys_ocldev
parent c7a49666d5
commit 17de60254a
10 changed files with 135 additions and 401 deletions

View File

@@ -131,7 +131,7 @@ cl_int Program::compile(
}
compileDataSize = elfWriter.getTotalBinarySize();
std::vector<char> compileData(compileDataSize);
CLElfLib::ElfBinaryStorage compileData(compileDataSize);
elfWriter.resolveBinary(compileData);
CompilerInterface *pCompilerInterface = getCompilerInterface();