This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH, committed] Update GDB test case for new ppc lnia extended mnemonic.


Update GDB test case for new lnia extended mnemonic.

When I added the new lnia extended mnemonic for addpcis, I updated the
assembler/disassembler test cases, but overlooked the GDB test cases.
This patch fixes that oversight and associated test case failure.

Committed as obvious.

Peter

	* gdb.arch/powerpc-power9.exp: Update test case for new lnia
	extended mnemonic.
	* gdb.arch/powerpc-power9.s: Likewise.

diff --git a/gdb/testsuite/gdb.arch/powerpc-power9.exp b/gdb/testsuite/gdb.arch/powerpc-power9.exp
index cb9be17..4df78e1 100644
--- a/gdb/testsuite/gdb.arch/powerpc-power9.exp
+++ b/gdb/testsuite/gdb.arch/powerpc-power9.exp
@@ -364,8 +364,8 @@ func_check "xscvhpdp vs40,vs50"
 func_check "xscvdphp vs41,vs51"
 func_check "xvcvhpsp vs42,vs52"
 func_check "xvcvsphp vs43,vs53"
-func_check "addpcis r3,0"
-func_check "addpcis r3,0"
+func_check "lnia    r3"
+func_check "lnia    r3"
 func_check "addpcis r4,1"
 func_check "addpcis r4,1"
 func_check "addpcis r5,-2"
diff --git a/gdb/testsuite/gdb.arch/powerpc-power9.s b/gdb/testsuite/gdb.arch/powerpc-power9.s
index 65d8783..5d1a280 100644
--- a/gdb/testsuite/gdb.arch/powerpc-power9.s
+++ b/gdb/testsuite/gdb.arch/powerpc-power9.s
@@ -321,7 +321,7 @@ func:
 	.long  0xf1319d6f    /* xscvdphp vs41,vs51         */
 	.long  0xf158a76f    /* xvcvhpsp vs42,vs52         */
 	.long  0xf179af6f    /* xvcvsphp vs43,vs53         */
-	.long  0x4c600004    /* addpcis r3,0               */
+	.long  0x4c600004    /* lnia r3                    */
 	.long  0x4c600004    /* addpcis r3,0               */
 	.long  0x4c800005    /* addpcis r4,1               */
 	.long  0x4c800005    /* addpcis r4,1               */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]