From 9aec02fc5df5518c16f1e5a9b6cb198a192db973 Mon Sep 17 00:00:00 2001 From: Calin Juravle Date: Tue, 18 Nov 2014 23:06:35 +0000 Subject: [optimizing compiler] Add shifts Added SHL, SHR, USHR for arm, x86, x86_64. Change-Id: I971f594e270179457e6958acf1401ff7630df07e --- compiler/utils/assembler_test.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'compiler/utils/assembler_test.h') diff --git a/compiler/utils/assembler_test.h b/compiler/utils/assembler_test.h index 9d3fa01a9d..54c931dc93 100644 --- a/compiler/utils/assembler_test.h +++ b/compiler/utils/assembler_test.h @@ -223,6 +223,10 @@ class AssemblerTest : public testing::Test { UNREACHABLE(); } + std::string GetRegisterName(const Reg& reg) { + return GetRegName(reg); + } + protected: explicit AssemblerTest() {} -- cgit v1.2.3-59-g8ed1b