Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Commit

Permalink
Merging from mainline. PR1399 fix.
Browse files Browse the repository at this point in the history
git-svn-id: http://llvm.org/svn/llvm-project/llvm/branches/release_20@36949 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Tanya Lattner committed May 8, 2007
1 parent f2d91cd commit dfafeb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Target/PowerPC/PPCRegisterInfo.td
Expand Up @@ -22,9 +22,9 @@ class GPR<bits<5> num, string n> : PPCReg<n> {
}

// GP8 - One of the 32 64-bit general-purpose registers
class GP8<GPR Alias> : PPCReg<Alias.Name> {
field bits<5> Num = Alias.Num;
let Aliases = [Alias];
class GP8<GPR SubReg> : PPCReg<SubReg.Name> {
field bits<5> Num = SubReg.Num;
let SubRegs = [SubReg];
}

// SPR - One of the 32-bit special-purpose registers
Expand Down

0 comments on commit dfafeb3

Please sign in to comment.