Removing LLVM_DELETED_FUNCTION, as MSVC 2012 was the last reason for requiring the...
[oota-llvm.git] / include / llvm / IR / Statepoint.h
index 2cdb6e08f37a2fba73e3e7b35ad53f2afe299486..c755f6148608e0bd2dbe1eae2d79cc461b6a3c1b 100644 (file)
@@ -45,8 +45,8 @@ bool isGCResult(const ImmutableCallSite &CS);
 template <typename InstructionTy, typename ValueTy, typename CallSiteTy>
 class StatepointBase {
   CallSiteTy StatepointCS;
-  void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
-  void *operator new(size_t s) LLVM_DELETED_FUNCTION;
+  void *operator new(size_t, unsigned) = delete;
+  void *operator new(size_t s) = delete;
 
  protected:
   explicit StatepointBase(InstructionTy *I) : StatepointCS(I) {