diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-03-10 19:06:39 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-03-10 19:06:39 +0000 |
commit | a768c3d45f73fff46fb9bbf4368c280ee4aaca49 (patch) | |
tree | 74823f6b19c08e7cbee5975ed097886657349fbc | |
parent | 5e97338c8d21b7fc561037b222917cb0af3fd66e (diff) |
Pseudo-instructions are codegenonly by definition.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127420 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrFormats.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMInstrFormats.td b/lib/Target/ARM/ARMInstrFormats.td index 1c3476c0a9..81577dafe6 100644 --- a/lib/Target/ARM/ARMInstrFormats.td +++ b/lib/Target/ARM/ARMInstrFormats.td @@ -300,6 +300,7 @@ class PseudoInst<dag oops, dag iops, InstrItinClass itin, list<dag> pattern> let OutOperandList = oops; let InOperandList = iops; let Pattern = pattern; + let isCodeGenOnly = 1; } // PseudoInst that's ARM-mode only. |