From e8b05b5105655d276c93864ab90e15bfbe46cf74 Mon Sep 17 00:00:00 2001 From: Mahesh Bodapati Date: Tue, 17 Jan 2017 15:42:15 +0530 Subject: [PATCH 19/54] [Patch, microblaze]: Modified trap instruction The instruction was wrongly written to brki r0,-1 it should be bri r0. Modified with the correct instruction Signed-off-by :Nagaraju Mekala :Ajit Agarwal --- gcc/config/microblaze/microblaze.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/microblaze/microblaze.md b/gcc/config/microblaze/microblaze.md index c063ffc..7bbdbe1 100644 --- a/gcc/config/microblaze/microblaze.md +++ b/gcc/config/microblaze/microblaze.md @@ -2344,7 +2344,7 @@ (define_insn "trap" [(trap_if (const_int 1) (const_int 0))] "" - "brki\tr0,-1" + "bri\t0" [(set_attr "type" "trap")] ) -- 2.7.4