diff options
author | Alan Leung <acleung@google.com> | 2017-09-21 18:03:18 -0700 |
---|---|---|
committer | Alan Leung <acleung@google.com> | 2017-09-21 18:21:28 -0700 |
commit | 349de3a3cf946a1a0f70555f71e58c35480d35f4 (patch) | |
tree | 33a840b9551df86caf388ee41c387b2679c8ca20 /compiler/optimizing/codegen_test_utils.h | |
parent | 208dd6076bdddcb04afb0397e4d4708f44a5dd60 (diff) |
Add D8 verification for 910-methods.
Bug: 65850560
Test: USE_D8=true art/test/run-test ... 910-methods
Object.toString looks like:
return getClass().getName() + "@" + Integer.toHexString(hashCode())
Which roughly translates to:
StringBuilder b = new StringBuilder();
b = b.append(getClass().getName());
b = b.append("@");
b = b.append(Integer.toHexString(hashCode());
return b.toString();
D8 does not generate move-result for the 3 append() calls.
Change-Id: I5985f9c2b8bb4c89c7a3268d98115e45016df277
Diffstat (limited to 'compiler/optimizing/codegen_test_utils.h')
0 files changed, 0 insertions, 0 deletions