diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-16 20:33:41 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-16 20:33:41 +0000 |
commit | 2bf54389311e371eac556924ce2926ad0d7a10e7 (patch) | |
tree | ac32fd499abdd97eb9769dd51befbb8ee67cea8c | |
parent | 039ba763d1da901bcd1ef0020a2aa97704c7962a (diff) | |
download | external_llvm-2bf54389311e371eac556924ce2926ad0d7a10e7.zip external_llvm-2bf54389311e371eac556924ce2926ad0d7a10e7.tar.gz external_llvm-2bf54389311e371eac556924ce2926ad0d7a10e7.tar.bz2 |
Add IMPLICIT_DEFS pseudo-instruction; patch by: Nate Begeman
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14895 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/PowerPC/PPCInstrInfo.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td index 819b960..e05dca8 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.td +++ b/lib/Target/PowerPC/PPCInstrInfo.td @@ -1255,6 +1255,7 @@ def PHI : PPC32InstPatternPseudo<"PHI", Pseudo>; // PHI node... def ADJCALLSTACKDOWN : PPC32InstPatternPseudo<"ADJCALLSTACKDOWN", Pseudo>; def ADJCALLSTACKUP : PPC32InstPatternPseudo<"ADJCALLSTACKUP", Pseudo>; def MovePCtoLR : PPC32InstPatternPseudo<"MovePCtoLR", Pseudo>; +def IMPLICIT_DEF : PPC32InstPatternPseudo<"IMPLICIT_DEF", Pseudo>; def LOADLoAddr : PPC32InstPattern0 <"la", Gpr, Gpr0, Simm16, 14, 0, 0>; def LOADHiAddr : PPC32InstPattern0 <"addis", Gpr, Gpr0, Simm16, 15, 0, 0>; |