diff options
author | Calin Juravle <calin@google.com> | 2014-11-26 19:01:09 +0000 |
---|---|---|
committer | Calin Juravle <calin@google.com> | 2014-11-26 19:01:09 +0000 |
commit | 91debbc3da3e3376416e4394155d9f9e355255cb (patch) | |
tree | fd2181a2d4b8e7e8d26101a9a87b4f0c34fa990f /test/432-optimizing-cmp/smali | |
parent | fd861249f31ab360c12dd1ffb131d50f02b0bfc6 (diff) | |
download | art-91debbc3da3e3376416e4394155d9f9e355255cb.zip art-91debbc3da3e3376416e4394155d9f9e355255cb.tar.gz art-91debbc3da3e3376416e4394155d9f9e355255cb.tar.bz2 |
Revert "[optimizing compiler] Add CMP{L,G}_{FLOAT,DOUBLE}"
Fails on arm due to missing vmrs op after vcmp. I revert this instead of pushing the fix because I don't understand yet why it compiles with run-test but not with dex2oat.
This reverts commit fd861249f31ab360c12dd1ffb131d50f02b0bfc6.
Change-Id: Idc2d30f6a0f39ddd3596aa18a532ae90f8aaf62f
Diffstat (limited to 'test/432-optimizing-cmp/smali')
-rw-r--r-- | test/432-optimizing-cmp/smali/cmp.smali | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/test/432-optimizing-cmp/smali/cmp.smali b/test/432-optimizing-cmp/smali/cmp.smali deleted file mode 100644 index 470d940..0000000 --- a/test/432-optimizing-cmp/smali/cmp.smali +++ /dev/null @@ -1,33 +0,0 @@ -.class public LTestCmp; - -.super Ljava/lang/Object; - -.method public static $opt$CmpLong(JJ)I - .registers 5 - cmp-long v0, v1, v3 - return v0 -.end method - -.method public static $opt$CmpGtFloat(FF)I - .registers 3 - cmpg-float v0, v1, v2 - return v0 -.end method - -.method public static $opt$CmpLtFloat(FF)I - .registers 3 - cmpl-float v0, v1, v2 - return v0 -.end method - -.method public static $opt$CmpGtDouble(DD)I - .registers 5 - cmpg-double v0, v1, v3 - return v0 -.end method - -.method public static $opt$CmpLtDouble(DD)I - .registers 5 - cmpl-double v0, v1, v3 - return v0 -.end method |