When adding the IsIntegratedAssemblerDefault() bits for OpenBSD
I missed adding the override keyword when bringing the code
forward from an older code base.

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

Index: ToolChains.h
===================================================================
--- ToolChains.h        (revision 214058)
+++ ToolChains.h        (working copy)
@@ -537,7 +537,7 @@
     return 2;
   }
 
-  virtual bool IsIntegratedAssemblerDefault() const {
+  virtual bool IsIntegratedAssemblerDefault() const override {
     if (getTriple().getArch() == llvm::Triple::ppc ||
         getTriple().getArch() == llvm::Triple::sparc ||
         getTriple().getArch() == llvm::Triple::sparcv9)
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to