From 698f3b068fabe42bc775ebf6a964b7de9dcd2b75 Mon Sep 17 00:00:00 2001 From: Jim Grosbach Date: Mon, 17 Oct 2011 21:00:11 +0000 Subject: [PATCH] Tidy up organization. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142248 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMInstrNEON.td | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/lib/Target/ARM/ARMInstrNEON.td b/lib/Target/ARM/ARMInstrNEON.td index 7aad18695bb..9375290a2e2 100644 --- a/lib/Target/ARM/ARMInstrNEON.td +++ b/lib/Target/ARM/ARMInstrNEON.td @@ -15,6 +15,10 @@ //===----------------------------------------------------------------------===// // NEON-specific Operands. //===----------------------------------------------------------------------===// +def nModImm : Operand { + let PrintMethod = "printNEONModImmOperand"; +} + def VectorIndex8Operand : AsmOperandClass { let Name = "VectorIndex8"; } def VectorIndex16Operand : AsmOperandClass { let Name = "VectorIndex16"; } def VectorIndex32Operand : AsmOperandClass { let Name = "VectorIndex32"; } @@ -163,14 +167,6 @@ def NEONimmAllOnesV: PatLeaf<(NEONvmovImm (i32 timm)), [{ return (EltBits == 8 && EltVal == 0xff); }]>; -//===----------------------------------------------------------------------===// -// NEON operand definitions -//===----------------------------------------------------------------------===// - -def nModImm : Operand { - let PrintMethod = "printNEONModImmOperand"; -} - //===----------------------------------------------------------------------===// // NEON load / store instructions //===----------------------------------------------------------------------===// -- 2.34.1