AsmPrinter: Make DIEValue::Ty private, NFC
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>
Sun, 24 May 2015 17:03:15 +0000 (17:03 +0000)
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>
Sun, 24 May 2015 17:03:15 +0000 (17:03 +0000)
llvm-svn: 238123

llvm/include/llvm/CodeGen/DIE.h

index ea7fa2d..8e40ef7 100644 (file)
@@ -215,11 +215,12 @@ public:
     isLocList,
   };
 
-protected:
+private:
   /// Ty - Type of data stored in the value.
   ///
   Type Ty;
 
+protected:
   explicit DIEValue(Type T) : Ty(T) {}
   ~DIEValue() {}