Remove unused private fields found by clang's new -Wunused-private-field.
[oota-llvm.git] / tools / llvm-diff / DiffConsumer.h
index 2060fe1c944f6b03c3c3436d5bac9b91fe4b7d5b..98e369ba976879c8581eac708d805134dfd66f3d 100644 (file)
@@ -67,8 +67,6 @@ namespace llvm {
     };
 
     raw_ostream &out;
-    Module *LModule;
-    Module *RModule;
     SmallVector<DiffContext, 5> contexts;
     bool Differences;
     unsigned Indent;
@@ -78,8 +76,8 @@ namespace llvm {
     void indent();
 
   public:
-    DiffConsumer(Module *L, Module *R)
-      : out(errs()), LModule(L), RModule(R), Differences(false), Indent(0) {}
+    DiffConsumer()
+      : out(errs()), Differences(false), Indent(0) {}
 
     bool hadDifferences() const;
     void enterContext(Value *L, Value *R);