diff --git a/rocclr/runtime/platform/program.hpp b/rocclr/runtime/platform/program.hpp index 33f48a25bf..aa7638c59b 100644 --- a/rocclr/runtime/platform/program.hpp +++ b/rocclr/runtime/platform/program.hpp @@ -131,6 +131,9 @@ public: //! Return the symbols for this program. const symbols_t& symbols() const { return *symbolTable_; } + //! Return the pointer to symbols for this program. + const symbols_t* symbolsPtr() const { return symbolTable_; } + //! Return the program source code. const std::string& sourceCode() const { return sourceCode_; }