diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-19 05:43:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-19 05:43:01 +0000 |
commit | a17409dfd689f9f9c089e51d0671954f176af34c (patch) | |
tree | 37c9d8a0ed84470cced639bc95212f8cef3e9488 | |
parent | 28b1a0b5323eb6953f40c28b4a2b02c6602d49ac (diff) |
minor fixes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26857 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/PowerPC/PPCInstrInfo.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td index 3b9896f6ed..d969a3c9c1 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.td +++ b/lib/Target/PowerPC/PPCInstrInfo.td @@ -216,9 +216,9 @@ def UPDATE_VRSAVE : Pseudo<(ops GPRC:$rD, GPRC:$rS), } def IMPLICIT_DEF_GPR : Pseudo<(ops GPRC:$rD), "; $rD = IMPLICIT_DEF_GPRC", [(set GPRC:$rD, (undef))]>; -def IMPLICIT_DEF_F8 : Pseudo<(ops F8RC:$rD), "; %rD = IMPLICIT_DEF_F8", +def IMPLICIT_DEF_F8 : Pseudo<(ops F8RC:$rD), "; $rD = IMPLICIT_DEF_F8", [(set F8RC:$rD, (undef))]>; -def IMPLICIT_DEF_F4 : Pseudo<(ops F4RC:$rD), "; %rD = IMPLICIT_DEF_F4", +def IMPLICIT_DEF_F4 : Pseudo<(ops F4RC:$rD), "; $rD = IMPLICIT_DEF_F4", [(set F4RC:$rD, (undef))]>; // SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded by the |