commit | 01ef345767ea609417fc511e42007705c9667546 | [log] [tgz] |
---|---|---|
author | Nicolas Geoffray <ngeoffray@google.com> | Wed Oct 01 11:32:17 2014 +0100 |
committer | Nicolas Geoffray <ngeoffray@google.com> | Tue Oct 07 21:25:27 2014 +0100 |
tree | 8a3cf1b5a576caf212ef31db966b97b6d23aaf98 | |
parent | a9f2904263581f606a5704f2bb74efcecf7e9f97 [diff] [blame] |
Add trivial register hints to the register allocator. - Add hints for phis, same as first input, and expected registers. - Make the if instruction accept non-condition instructions. Change-Id: I34fa68393f0d0c19c68128f017b7a05be556fbe5
diff --git a/compiler/optimizing/instruction_simplifier.h b/compiler/optimizing/instruction_simplifier.h index b2f3f52..d74b624 100644 --- a/compiler/optimizing/instruction_simplifier.h +++ b/compiler/optimizing/instruction_simplifier.h
@@ -32,6 +32,7 @@ private: virtual void VisitSuspendCheck(HSuspendCheck* check) OVERRIDE; + virtual void VisitEqual(HEqual* equal) OVERRIDE; }; } // namespace art