Initial implementation of 'fence' instruction, the new C++0x-style replacement for...
[oota-llvm.git] / include / llvm / OperandTraits.h
index dbdb1a15494e8bb54dca812a3db186c84ba5c03b..f0df5fa9bde82336f6c07edeff452ce849b810ab 100644 (file)
@@ -38,16 +38,6 @@ struct FixedNumOperandTraits {
   static unsigned operands(const User*) {
     return ARITY;
   }
-  struct prefix {
-    Use Ops[ARITY];
-    prefix(); // DO NOT IMPLEMENT
-  };
-  template <class U>
-  struct Layout {
-    struct overlay : public prefix, public U {
-      overlay(); // DO NOT IMPLEMENT
-    };
-  };
 };
 
 //===----------------------------------------------------------------------===//