diff options
Diffstat (limited to 'compiler/oat_test.cc')
| -rw-r--r-- | compiler/oat_test.cc | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/compiler/oat_test.cc b/compiler/oat_test.cc index 0a778b0954..86d92ff0b5 100644 --- a/compiler/oat_test.cc +++ b/compiler/oat_test.cc @@ -14,6 +14,8 @@   * limitations under the License.   */ +#include "android-base/stringprintf.h" +  #include "arch/instruction_set_features.h"  #include "art_method-inl.h"  #include "base/enums.h" @@ -48,7 +50,7 @@ NO_RETURN static void Usage(const char* fmt, ...) {    va_list ap;    va_start(ap, fmt);    std::string error; -  StringAppendV(&error, fmt, ap); +  android::base::StringAppendV(&error, fmt, ap);    LOG(FATAL) << error;    va_end(ap);    UNREACHABLE(); @@ -196,6 +198,7 @@ class OatTest : public CommonCompilerTest {                                           compiler_driver_->GetInstructionSetFeatures(),                                           &key_value_store,                                           verify, +                                         /* update_input_vdex */ false,                                           &opened_dex_files_map,                                           &opened_dex_files)) {        return false; |