diff options
author | Pavel Pisa <pisa@cmp.felk.cvut.cz> | 2019-02-05 17:51:54 +0100 |
---|---|---|
committer | Pavel Pisa <pisa@cmp.felk.cvut.cz> | 2019-02-05 17:51:54 +0100 |
commit | e6eccde424e3162f6cb4df05e04fe228241a23f5 (patch) | |
tree | 85af12de3a150a33d2b82755425a5b1457274b07 | |
parent | e241d5ff197d89c0b8b44fa4429e3d1ca770ddaf (diff) | |
download | qtmips-e6eccde424e3162f6cb4df05e04fe228241a23f5.tar.gz qtmips-e6eccde424e3162f6cb4df05e04fe228241a23f5.tar.bz2 qtmips-e6eccde424e3162f6cb4df05e04fe228241a23f5.zip |
No reorder has to be specified else addi is moved to j delay slot.
All tests are passing now.
Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
-rw-r--r-- | tests/machine-unit-tests/data.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/machine-unit-tests/data.S b/tests/machine-unit-tests/data.S index d61d81d..94a1dfc 100644 --- a/tests/machine-unit-tests/data.S +++ b/tests/machine-unit-tests/data.S @@ -1,5 +1,8 @@ .text .globl _start +.set noat +.set noreorder +.ent _start _start: addi $1, $0, 6 |