aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-03-22 19:49:31 +0100
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-03-22 19:49:31 +0100
commitc1b481f7eb46000110b71cfa9ea73694adc6b009 (patch)
treeedc7c72909f3cfc133ff05c25b2415df3d51e033
parentd60821fc996345c00d8b28e9a2e729c540c4f4f8 (diff)
downloadcompcert-kvx-c1b481f7eb46000110b71cfa9ea73694adc6b009.tar.gz
compcert-kvx-c1b481f7eb46000110b71cfa9ea73694adc6b009.zip
FIX BUG in TargetPrinter (nandd immediate wrongly printed as andd)
-rw-r--r--mppa_k1c/TargetPrinter.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/mppa_k1c/TargetPrinter.ml b/mppa_k1c/TargetPrinter.ml
index 233dffec..29e0fef4 100644
--- a/mppa_k1c/TargetPrinter.ml
+++ b/mppa_k1c/TargetPrinter.ml
@@ -498,7 +498,7 @@ module Target (*: TARGET*) =
| Pandil (rd, rs, imm) -> assert Archi.ptr64;
fprintf oc " andd %a = %a, %a\n" ireg rd ireg rs coqint64 imm
| Pnandil (rd, rs, imm) -> assert Archi.ptr64;
- fprintf oc " andd %a = %a, %a\n" ireg rd ireg rs coqint64 imm
+ fprintf oc " nandd %a = %a, %a\n" ireg rd ireg rs coqint64 imm
| Poril (rd, rs, imm) -> assert Archi.ptr64;
fprintf oc " ord %a = %a, %a\n" ireg rd ireg rs coqint64 imm
| Pnoril (rd, rs, imm) -> assert Archi.ptr64;