author | pcpa <paulo.cesar.pereira.de.andrade@gmail.com> | 2012年12月05日 22:40:02 -0200 |
---|---|---|
committer | pcpa <paulo.cesar.pereira.de.andrade@gmail.com> | 2012年12月05日 22:40:02 -0200 |
commit | 91244b1801e270127e13c9eeba0ded4d620ae4e7 (patch) | |
tree | 8b535b08fc49425baccbc633abbcc5422f086ad6 | |
parent | f59fceb75d13f7d60bb002a0f8cd783491011124 (diff) | |
download | lightning-91244b1801e270127e13c9eeba0ded4d620ae4e7.tar.gz |
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | check/ldstxi.tst | 2 | ||||
-rw-r--r-- | check/ldstxr.tst | 4 | ||||
-rw-r--r-- | configure.ac | 2 |
@@ -1,5 +1,12 @@ 2012年12月05日 Paulo Andrade <pcpa@gnu.org> + * check/ldstxi.tst, check/ldstxr.tst: Correct wrong argument + order for 32 bit mode tests. + + * configure.ac: Correct check for ix86 target_cpu. + +2012年12月05日 Paulo Andrade <pcpa@gnu.org> + * check/ldstr.ok, check/ldstr.tst, check/ldsti.ok, check/ldsti.tst, check/ldstxr.ok, check/ldstxr.tst, check/ldstxi.ok, check/ldstxi.tst: diff --git a/check/ldstxi.tst b/check/ldstxi.tst index e981b7f..710ee42 100644 --- a/check/ldstxi.tst +++ b/check/ldstxi.tst @@ -111,7 +111,7 @@ L##x##C: #else # define LDSTL(C, R0, R1) # define SI(C, N, x, X, R0, R1) \ - ldxi_##x $off##x %R1 %R0 \ + ldxi_##x %R1 %R0 $off##x \ beqi L##x##C %R1 I##X##N \ calli @abort \ L##x##C: diff --git a/check/ldstxr.tst b/check/ldstxr.tst index c989cb6..6fb7d7d 100644 --- a/check/ldstxr.tst +++ b/check/ldstxr.tst @@ -115,7 +115,7 @@ L##x##C: # define LDSTL(C, R0, R1, R2) # define SI(C, N, x, X, R0, R1, R2) \ movi %R2 $off##x \ - ldxr_##x %R2 %R1 %R0 \ + ldxr_##x %R1 %R0 %R2 \ beqi L##x##C %R1 I##X##N \ calli @abort \ L##x##C: @@ -218,7 +218,6 @@ L##x##C: main: prolog -#if 0 /* Simple test to simplify validating encodings before * brute force tests */ movi %r0 t0 @@ -307,7 +306,6 @@ Lf: beqi_d Ld %f0 0.25 calli @abort Ld: -#endif LDST(v0, v1, v2, r0, r1, r2, f0, f1, f2, f3, f4, f5) // just to know did not abort diff --git a/configure.ac b/configure.ac index de78e10..e7051c7 100644 --- a/configure.ac +++ b/configure.ac @@ -58,7 +58,7 @@ fi cpu= case "$target_cpu" in - i?x86|x86_64) cpu=x86 ;; + i?86|x86_64) cpu=x86 ;; *arm*) cpu=arm ;; *mips*) cpu=mips ;; *ppc*) cpu=ppc ;; |