diff options
author | Richard Osborne <richard@xmos.com> | 2013-05-05 13:33:10 +0000 |
---|---|---|
committer | Richard Osborne <richard@xmos.com> | 2013-05-05 13:33:10 +0000 |
commit | fae63389d9a7fb2d0c544732ae5634563bd274aa (patch) | |
tree | f19104a46568c74c60663821c7caf7e184b93643 /lib | |
parent | 24aeab3d8a4830b333f6453c16c14f7f87e3cee4 (diff) | |
download | external_llvm-fae63389d9a7fb2d0c544732ae5634563bd274aa.zip external_llvm-fae63389d9a7fb2d0c544732ae5634563bd274aa.tar.gz external_llvm-fae63389d9a7fb2d0c544732ae5634563bd274aa.tar.bz2 |
[XCore] Update LDAP to use pcrel_imm.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181154 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/XCore/XCoreInstrInfo.td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/XCore/XCoreInstrInfo.td b/lib/Target/XCore/XCoreInstrInfo.td index fe63088..a4a339e 100644 --- a/lib/Target/XCore/XCoreInstrInfo.td +++ b/lib/Target/XCore/XCoreInstrInfo.td @@ -658,14 +658,14 @@ defm KRESTSP : FU6_LU6_np<0b0111101111, "krestsp">; // U10 let Defs = [R11], isReMaterializable = 1, neverHasSideEffects = 1 in -def LDAPF_u10 : _FU10<0b110110, (outs), (ins i32imm:$a), "ldap r11, $a", []>; +def LDAPF_u10 : _FU10<0b110110, (outs), (ins pcrel_imm:$a), "ldap r11, $a", []>; let Defs = [R11], isReMaterializable = 1 in -def LDAPF_lu10 : _FLU10<0b110110, (outs), (ins i32imm:$a), "ldap r11, $a", +def LDAPF_lu10 : _FLU10<0b110110, (outs), (ins pcrel_imm:$a), "ldap r11, $a", [(set R11, (pcrelwrapper tglobaladdr:$a))]>; let Defs = [R11], isReMaterializable = 1, isCodeGenOnly = 1 in -def LDAPF_lu10_ba : _FLU10<0b110110, (outs), (ins i32imm:$a), "ldap r11, $a", +def LDAPF_lu10_ba : _FLU10<0b110110, (outs), (ins pcrel_imm:$a), "ldap r11, $a", [(set R11, (pcrelwrapper tblockaddress:$a))]>; let isCall=1, |