From d56376cce54e7df976780ecbd03228f60d276433 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Thu, 21 May 2015 12:32:34 +0000 Subject: Revert "Revert "Introduce a NearLabel in thumb2."" This reverts commit 1f277e3cef6c33cd35e91123978491d83338d2ad. - Fix CompareAndBranch to not use cbz/cbnz with high registers. - Add a test for CompareAndBranch with the *inc file, as the other assembler test infrastructure does not handle labels. Change-Id: If552bf1112b96caa3b9bb6c73c4b40bb90a33db7 --- compiler/utils/assembler_test_base.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compiler/utils/assembler_test_base.h') diff --git a/compiler/utils/assembler_test_base.h b/compiler/utils/assembler_test_base.h index 3341151c8b..40eb15bbdc 100644 --- a/compiler/utils/assembler_test_base.h +++ b/compiler/utils/assembler_test_base.h @@ -215,9 +215,9 @@ class AssemblerTestInfrastructure { bool success = Exec(args, error_msg); if (!success) { - LOG(INFO) << "Assembler command line:"; + LOG(ERROR) << "Assembler command line:"; for (std::string arg : args) { - LOG(INFO) << arg; + LOG(ERROR) << arg; } } return success; -- cgit v1.2.3-59-g8ed1b