The test case requires adding a nop instruction. For or1k the
instruction is `l.nop`. This change uses the correct operation.
gdb/testsuite/ChangeLog:
2017-12-12 Stafford Horne <shorne@gmail.com>
* gdb.base/bp-permanent.c: Define nop of or1k.
+2017-12-12 Stafford Horne <shorne@gmail.com>
+
+ * gdb.base/bp-permanent.c: Define nop of or1k.
+
2017-12-11 Joel Brobecker <brobecker@adacore.com>
* gdb.ada/variant_record_packed_array.exp: Adapt test to accept
#if defined(__s390__) || defined(__s390x__)
#define NOP asm("nopr 0")
+#elif defined(__or1k__)
+#define NOP asm("l.nop")
#else
#define NOP asm("nop")
#endif