diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-10-17 21:00:11 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-10-17 21:00:11 +0000 |
commit | 698f3b068fabe42bc775ebf6a964b7de9dcd2b75 (patch) | |
tree | 23e66b02b1e912424977ed3a776c4ebfe08c119a /lib/Target | |
parent | e7a0719161ebc3600d3f584901ab8e2276acdb59 (diff) | |
download | external_llvm-698f3b068fabe42bc775ebf6a964b7de9dcd2b75.zip external_llvm-698f3b068fabe42bc775ebf6a964b7de9dcd2b75.tar.gz external_llvm-698f3b068fabe42bc775ebf6a964b7de9dcd2b75.tar.bz2 |
Tidy up organization.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142248 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/ARM/ARMInstrNEON.td | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/Target/ARM/ARMInstrNEON.td b/lib/Target/ARM/ARMInstrNEON.td index 7aad186..9375290 100644 --- a/lib/Target/ARM/ARMInstrNEON.td +++ b/lib/Target/ARM/ARMInstrNEON.td @@ -15,6 +15,10 @@ //===----------------------------------------------------------------------===// // NEON-specific Operands. //===----------------------------------------------------------------------===// +def nModImm : Operand<i32> { + let PrintMethod = "printNEONModImmOperand"; +} + def VectorIndex8Operand : AsmOperandClass { let Name = "VectorIndex8"; } def VectorIndex16Operand : AsmOperandClass { let Name = "VectorIndex16"; } def VectorIndex32Operand : AsmOperandClass { let Name = "VectorIndex32"; } @@ -164,14 +168,6 @@ def NEONimmAllOnesV: PatLeaf<(NEONvmovImm (i32 timm)), [{ }]>; //===----------------------------------------------------------------------===// -// NEON operand definitions -//===----------------------------------------------------------------------===// - -def nModImm : Operand<i32> { - let PrintMethod = "printNEONModImmOperand"; -} - -//===----------------------------------------------------------------------===// // NEON load / store instructions //===----------------------------------------------------------------------===// |