Change MachineInstrBuilder::addDisp to copy over target flags by default.
[oota-llvm.git] / include / llvm / Support / FormattedStream.h
index 61a219f676e17d75554741ebf901b1188e15b769..21635dcfb688f964a244daecef604745bbc23421 100644 (file)
@@ -55,11 +55,11 @@ namespace llvm
     ///
     const char *Scanned;
 
-    virtual void write_impl(const char *Ptr, size_t Size);
+    virtual void write_impl(const char *Ptr, size_t Size) LLVM_OVERRIDE;
 
     /// current_pos - Return the current position within the stream,
     /// not counting the bytes currently in the buffer.
-    virtual uint64_t current_pos() const 
+    virtual uint64_t current_pos() const LLVM_OVERRIDE {
       // Our current position in the stream is all the contents which have been
       // written to the underlying stream (*not* the current position of the
       // underlying stream).