diff options
author | 2023-03-15 13:36:40 +0800 | |
---|---|---|
committer | 2023-06-02 14:13:39 +0000 | |
commit | 5d567e508e42ebd89622d0cfc528c611be3b19af (patch) | |
tree | 4fdf054e7f9d5c00165f43974a076c887e94b9ef /compiler/utils/assembler_test_base.h | |
parent | e7dd044ecf428701c3cf5c07ca6540ec38d2c3c2 (diff) |
Add assembler for riscv64, part 4.
Implement fences, LR/SC and atomic operations.
Test: m test-art-host-gtest
Bug: 283082089
Signed-off-by: Lifang Xia <lifang_xia@linux.alibaba.com>
Signed-off-by: Wendong Wang <wangwd@xcvmbyte.com>
Signed-off-by: Cao Xia <caoxia@eswincomputing.com>
Change-Id: If10463d33071db577c4cc775ad3700c1746e093d
Diffstat (limited to 'compiler/utils/assembler_test_base.h')
-rw-r--r-- | compiler/utils/assembler_test_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/assembler_test_base.h b/compiler/utils/assembler_test_base.h index fb950f8237..47ce8e65ae 100644 --- a/compiler/utils/assembler_test_base.h +++ b/compiler/utils/assembler_test_base.h @@ -174,7 +174,7 @@ class AssemblerTestBase : public testing::Test { "--disassemble", "--no-print-imm-hex", "--no-show-raw-insn", - "--mattr=+F,+D", // Disassemble "F" and "D" Standard Extensions. + "--mattr=+F,+D,+A", // Disassemble "F", "D" and "A" Standard Extensions. "-M", "no-aliases"}; default: |