diff options
| author | Akira Hatanaka <ahatanaka@mips.com> | 2013-08-08 21:44:39 +0000 |
|---|---|---|
| committer | Akira Hatanaka <ahatanaka@mips.com> | 2013-08-08 21:44:39 +0000 |
| commit | 6bf3c03861fec662ac182bdff5132b50ed22a5e1 (patch) | |
| tree | 83aeac90141dbea652cf4ea39a7656109be267cb | |
| parent | 85ccf23d7da647fe7a7cbbc0e51702f2a4f16da3 (diff) | |
| download | bcm5719-llvm-6bf3c03861fec662ac182bdff5132b50ed22a5e1.tar.gz bcm5719-llvm-6bf3c03861fec662ac182bdff5132b50ed22a5e1.zip | |
[mips] Mark pseudo instructions as code-gen only.
llvm-svn: 188017
| -rw-r--r-- | llvm/lib/Target/Mips/MipsDSPInstrInfo.td | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/Mips/MipsDSPInstrInfo.td b/llvm/lib/Target/Mips/MipsDSPInstrInfo.td index 526821ad3e4..2120a793ac7 100644 --- a/llvm/lib/Target/Mips/MipsDSPInstrInfo.td +++ b/llvm/lib/Target/Mips/MipsDSPInstrInfo.td @@ -1240,14 +1240,14 @@ def PREPEND : PREPEND_ENC, PREPEND_DESC; } // Pseudos. -let isPseudo = 1 in { +let isPseudo = 1, isCodeGenOnly = 1 in { // Pseudo instructions for loading and storing accumulator registers. - defm LOAD_AC_DSP : LoadM<"load_ac_dsp", ACRegsDSPOpnd>; - defm STORE_AC_DSP : StoreM<"store_ac_dsp", ACRegsDSPOpnd>; + defm LOAD_AC_DSP : LoadM<"", ACRegsDSPOpnd>; + defm STORE_AC_DSP : StoreM<"", ACRegsDSPOpnd>; // Pseudos for loading and storing ccond field of DSP control register. - defm LOAD_CCOND_DSP : LoadM<"load_ccond_dsp", DSPCC>; - defm STORE_CCOND_DSP : StoreM<"store_ccond_dsp", DSPCC>; + defm LOAD_CCOND_DSP : LoadM<"", DSPCC>; + defm STORE_CCOND_DSP : StoreM<"", DSPCC>; } // Pseudo CMP and PICK instructions. |

