| 10 | std::unique_ptr<IRAccessHelper> IRAccess; |
| 11 | |
| 12 | bool load(std::string SrcDir, std::string CodePath) { |
| 13 | return load(SrcDir, std::vector<std::string>({CodePath})); |
| 14 | } |
| 15 | |
| 16 | bool load(std::string SrcDir, std::vector<std::string> CodePaths) { |
| 17 | CH = TestHelperFactory().createCompileHelper(SrcDir, CodePaths, "-O0 -g -w", |
nothing calls this directly
no test coverage detected