diff options
author | Sandra Loosemore <sandra@codesourcery.com> | 2013-06-12 23:03:21 +0000 |
---|---|---|
committer | Sandra Loosemore <sandra@codesourcery.com> | 2013-06-12 23:03:21 +0000 |
commit | 0c8fe7cfe2690fb49f8aab4ba23ff1080fd8f113 (patch) | |
tree | 15a6a184d8725888ef43e296fd59b6b9a7d89735 /include/opcode/nios2.h | |
parent | [GDBserver] Fix gdb.threads/siginfo-threads.exp, gdb.base/siginfo-obj.exp reg... (diff) | |
download | binutils-gdb-0c8fe7cfe2690fb49f8aab4ba23ff1080fd8f113.tar.gz binutils-gdb-0c8fe7cfe2690fb49f8aab4ba23ff1080fd8f113.tar.bz2 binutils-gdb-0c8fe7cfe2690fb49f8aab4ba23ff1080fd8f113.zip |
2013-06-12 Sandra Loosemore <sandra@codesourcery.com>
include/opcode/
* nios2.h (OP_MATCH_ERET): Correct eret encoding.
gas/testsuite/
* gas/nios2/tret.d: Correct eret encoding.
Diffstat (limited to 'include/opcode/nios2.h')
-rw-r--r-- | include/opcode/nios2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/opcode/nios2.h b/include/opcode/nios2.h index 5f6cf6e26c9..aa670981903 100644 --- a/include/opcode/nios2.h +++ b/include/opcode/nios2.h @@ -440,7 +440,7 @@ struct nios2_reg #define OP_MATCH_SUB OPX_MATCH (OPX_SUB) #define OP_MATCH_SYNC OPX_MATCH (OPX_SYNC) #define OP_MATCH_TRAP ((0x1d << 17) | OPX_MATCH (OPX_TRAP)) -#define OP_MATCH_ERET (0xe8000000 | OPX_MATCH (OPX_ERET)) +#define OP_MATCH_ERET (0xef800000 | OPX_MATCH (OPX_ERET)) #define OP_MATCH_WRCTL OPX_MATCH (OPX_WRCTL) #define OP_MATCH_WRPRS OPX_MATCH (OPX_WRPRS) #define OP_MATCH_XOR OPX_MATCH (OPX_XOR) |