| 2057 | } |
| 2058 | |
| 2059 | string LlvmCodeGen::DiagnosticHandler::GetErrorString() { |
| 2060 | if (!error_str_.empty()) { |
| 2061 | string return_msg(move(error_str_)); // Also clears error_str_. |
| 2062 | return return_msg; |
| 2063 | } |
| 2064 | return ""; |
| 2065 | } |
| 2066 | |
| 2067 | string LlvmCodeGen::DebugCacheEntryString(CodeGenCacheKey& key, bool is_lookup, |
| 2068 | bool debug_mode, bool success) const { |
no test coverage detected