diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-05-27 16:01:08 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-05-27 16:01:08 +0000 |
commit | ecb55730470e001938b0f6c87a66f59ed9954f99 (patch) | |
tree | b9a437bba3e2e3d6f8793f835ed8fc41a833e073 /llvm/lib | |
parent | ea5dc3a67b90b26e73d6a67b08d3927b9dd5d14f (diff) | |
download | bcm5719-llvm-ecb55730470e001938b0f6c87a66f59ed9954f99.tar.gz bcm5719-llvm-ecb55730470e001938b0f6c87a66f59ed9954f99.zip |
Remove DwarfRegNum from CARRY. I should be encoded with DW_OP_bit_piece.
llvm-svn: 132190
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/MBlaze/MBlazeRegisterInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.td b/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.td index caca4074113..4fb4d342ab2 100644 --- a/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.td +++ b/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.td @@ -102,7 +102,7 @@ let Namespace = "MBlaze" in { // The carry bit. In the Microblaze this is really bit 29 of the // MSR register but this is the only bit of that register that we // are interested in modeling. - def CARRY : MBlazeSPRReg<0x0000, "rmsr[c]">, DwarfRegNum<[33]>; + def CARRY : MBlazeSPRReg<0x0000, "rmsr[c]">; } //===----------------------------------------------------------------------===// |