diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-22 23:07:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-22 23:07:01 +0000 |
commit | dd99885da319dfc8d8438736b348cdf2bc953d9c (patch) | |
tree | d2a2e4f7ea68eaee66a7a4188727f1b699a4cd4e /lib/Target | |
parent | 90b1b457ef6d1747a9de84a1839cd22d9fca3735 (diff) | |
download | external_llvm-dd99885da319dfc8d8438736b348cdf2bc953d9c.zip external_llvm-dd99885da319dfc8d8438736b348cdf2bc953d9c.tar.gz external_llvm-dd99885da319dfc8d8438736b348cdf2bc953d9c.tar.bz2 |
Comment out a couple of unused instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18135 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/PowerPC/PPCInstrInfo.td | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td index da413f8..4c6b5dc 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.td +++ b/lib/Target/PowerPC/PPCInstrInfo.td @@ -57,9 +57,10 @@ def MovePCtoLR : Pseudo<(ops piclabel:$label), "bl $label">; let isBranch = 1, isTerminator = 1 in { def COND_BRANCH : Pseudo<(ops), "; COND_BRANCH">; def B : IForm<18, 0, 0, 0, 0, (ops target:$func), "b $func">; - def BA : IForm<18, 1, 0, 0, 0, (ops target:$func), "ba $func">; +//def BA : IForm<18, 1, 0, 0, 0, (ops target:$func), "ba $func">; def BL : IForm<18, 0, 1, 0, 0, (ops target:$func), "bl $func">; - def BLA : IForm<18, 1, 1, 0, 0, (ops target:$func), "bla $func">; +//def BLA : IForm<18, 1, 1, 0, 0, (ops target:$func), "bla $func">; + // FIXME: 4*CR# needs to be added to the BI field! // This will only work for CR0 as it stands now def BLT : BForm_ext<16, 0, 0, 12, 0, 0, 0, (ops CRRC:$crS, target:$block), |