Move the Imp tblgen class from the X86 backend to common code.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30907 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/Target.td b/lib/Target/Target.td
index 75d3d7b..bb87265 100644
--- a/lib/Target/Target.td
+++ b/lib/Target/Target.td
@@ -173,6 +173,13 @@
   InstrItinClass Itinerary = NoItinerary;// Execution steps used for scheduling.
 }
 
+/// Imp - Helper class for specifying the implicit uses/defs set for an
+/// instruction.
+class Imp<list<Register> uses, list<Register> defs> {
+  list<Register> Uses = uses;
+  list<Register> Defs = defs;
+}
+
 /// Predicates - These are extra conditionals which are turned into instruction
 /// selector matching code. Currently each predicate is just a string.
 class Predicate<string cond> {