changeset 4e208a5350b8 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=4e208a5350b8
description:
        hsail: generate mov instructions for more arith_types and bit_types

diffstat:

 src/arch/hsail/gen.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r d5ffebd89eb2 -r 4e208a5350b8 src/arch/hsail/gen.py
--- a/src/arch/hsail/gen.py     Fri Dec 02 18:01:42 2016 -0500
+++ b/src/arch/hsail/gen.py     Fri Dec 02 18:01:49 2016 -0500
@@ -686,7 +686,7 @@
 gen('Abs', arith_types, 'std::abs(src0)')
 gen('Neg', arith_types, '-src0')
 
-gen('Mov', bit_types, 'src0')
+gen('Mov', bit_types + arith_types, 'src0')
 gen('Not', bit_types, 'heynot(src0)')
 
 # mad and fma differ only in rounding behavior, which we don't emulate
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to