| 333 | } |
| 334 | |
| 335 | void LlvmCodeGenCacheTest::CheckObjCacheExists(LlvmCodeGen* codegen) { |
| 336 | // If a cache is written, the size of it should be larger than size of the struct. |
| 337 | EXPECT_GT(codegen->engine_cache()->objSize(), sizeof(CodeGenObjectCache)); |
| 338 | } |
| 339 | |
| 340 | int64_t LlvmCodeGenCacheTest::GetMemCharge( |
| 341 | LlvmCodeGen* codegen, const string& key_str, bool is_normal_mode) { |
nothing calls this directly
no test coverage detected