From: Wesley Peck Date: Thu, 11 Nov 2010 22:21:08 +0000 (+0000) Subject: The BRK instruction in the MicroBlaze is a branch-and-link. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=48bcda4dd6542e183b82c6e035b7d263498deb02;p=oota-llvm.git The BRK instruction in the MicroBlaze is a branch-and-link. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118848 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/MBlaze/MBlazeInstrInfo.td b/lib/Target/MBlaze/MBlazeInstrInfo.td index 76e8efe428a..98724f94ba6 100644 --- a/lib/Target/MBlaze/MBlazeInstrInfo.td +++ b/lib/Target/MBlaze/MBlazeInstrInfo.td @@ -606,8 +606,8 @@ let rd=0x0, Form=FCRR in { "wic $a, $b", [], IIAlu>; } -def BRK : Branch<0x26, 0x0C, 0x000, "brk ">; -def BRKI : BranchI<0x2E, 0x0C, "brki ">; +def BRK : BranchL<0x26, 0x0C, 0x000, "brk ">; +def BRKI : BranchLI<0x2E, 0x0C, "brki ">; def IMM : MBlazeInst<0x2C, FCCI, (outs), (ins simm16:$imm), "imm $imm", [], IIAlu>;