copying and assignment of sema seem unwise :)


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64712 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/Sema.h b/lib/Sema/Sema.h
index a96618f..3475b2d 100644
--- a/lib/Sema/Sema.h
+++ b/lib/Sema/Sema.h
@@ -110,6 +110,8 @@
 
 /// Sema - This implements semantic analysis and AST building for C.
 class Sema : public Action {
+  Sema(const Sema&);           // DO NOT IMPLEMENT
+  void operator=(const Sema&); // DO NOT IMPLEMENT
 public:
   const LangOptions &LangOpts;
   Preprocessor &PP;