Fixed accidental use of reserved identifier in r214709.
[oota-llvm.git] / include / llvm / MC / MCLinkerOptimizationHint.h
index 77bc0900365802186c9c603dc0d9f175c1a7fa49..50fd527ffe2a5219cd7afbd7e199f6e82cb06bdb 100644 (file)
@@ -133,13 +133,14 @@ public:
   uint64_t getEmitSize(const MachObjectWriter &ObjWriter,
                        const MCAsmLayout &Layout) const {
     class raw_counting_ostream : public raw_ostream {
-      uint64_t Count = 0;
+      uint64_t Count;
 
       void write_impl(const char *, size_t size) override { Count += size; }
 
       uint64_t current_pos() const override { return Count; }
 
     public:
+      raw_counting_ostream() : Count(0) {}
       ~raw_counting_ostream() { flush(); }
     };