# HG changeset patch # Parent e699d904d5e832aea259f1d8e405213f05aab9bd gpu-compute: Fixed a bug in decoding Atomic ST diff -r e699d904d5e8 -r 4d1a8a62c142 src/arch/hsail/insts/mem.hh --- a/src/arch/hsail/insts/mem.hh Wed May 18 12:12:35 2016 -0500 +++ b/src/arch/hsail/insts/mem.hh Mon Jun 13 16:45:40 2016 -0500 @@ -1554,11 +1554,11 @@ case Brig::BRIG_TYPE_B8: return decodeSt(ib, obj); case Brig::BRIG_TYPE_B16: - return decodeSt(ib, obj); + return decodeSt(ib, obj); case Brig::BRIG_TYPE_B32: - return decodeSt(ib, obj); + return decodeSt(ib, obj); case Brig::BRIG_TYPE_B64: - return decodeSt(ib, obj); + return decodeSt(ib, obj); default: fatal("AtomicSt: Operand type mismatch %d\n", ib->type); } } else {