kfdtest: Remove IsaGen from KFDLocalMemoryTest

Replace with LLVM-based Assembler.

Signed-off-by: Graham Sider <Graham.Sider@amd.com>
Change-Id: Ie83d27b6a93ac1b5169a830a7f274e360a31023e
This commit is contained in:
Graham Sider
2021-09-30 18:04:51 -04:00
committed by Harish Kasiviswanathan
parent 097b11abad
commit 549f7cdce2
2 changed files with 5 additions and 14 deletions
+1 -5
View File
@@ -26,20 +26,16 @@
#include <gtest/gtest.h>
#include "IsaGenerator.hpp"
#include "KFDBaseComponentTest.hpp"
class KFDLocalMemoryTest : public KFDBaseComponentTest {
public:
KFDLocalMemoryTest() :m_pIsaGen(NULL) {}
KFDLocalMemoryTest() {}
~KFDLocalMemoryTest() {}
protected:
virtual void SetUp();
virtual void TearDown();
protected: // Members
IsaGenerator* m_pIsaGen;
};
#endif // __KFD_LOCALMEMORY_TEST__H__