Skip to content

Commit

Permalink
R600/SI: Fix assembly names for exec_hi and exec_lo
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221995 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
tstellarAMD committed Nov 14, 2014
1 parent 19cb35b commit 239d523
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Target/R600/SIRegisterInfo.td
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def VCC : RegisterWithSubRegs<"VCC", [VCC_LO, VCC_HI]> {
let HWEncoding = 106;
}

def EXEC_LO : SIReg<"EXEC", 126>;
def EXEC_HI : SIReg<"EXEC", 127>;
def EXEC_LO : SIReg<"exec_lo", 126>;
def EXEC_HI : SIReg<"exec_hi", 127>;

def EXEC : RegisterWithSubRegs<"EXEC", [EXEC_LO, EXEC_HI]> {
let Namespace = "AMDGPU";
Expand Down

0 comments on commit 239d523

Please sign in to comment.