# HG changeset patch # Parent 80e79ae636ca6b021cbf7aa985b5fd56cb5b2708 gpu-compute: Fixed a bug in decoding Atomic ST diff -r 80e79ae636ca -r 778e01ee7962 src/arch/hsail/insts/mem.hh --- a/src/arch/hsail/insts/mem.hh Sun Jun 12 20:02:49 2016 -0400 +++ b/src/arch/hsail/insts/mem.hh Mon Jun 13 17:13:05 2016 -0500 @@ -1556,11 +1556,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 {