r223241 - Fix isThreadModelSupported()'s comment. NFC

Jonathan Roelofs jonathan at codesourcery.com
Wed Dec 3 09:04:53 PST 2014


Author: jroelofs
Date: Wed Dec  3 11:04:52 2014
New Revision: 223241

URL: http://llvm.org/viewvc/llvm-project?rev=223241&view=rev
Log:
Fix isThreadModelSupported()'s comment. NFC

Modified:
    cfe/trunk/include/clang/Driver/ToolChain.h

Modified: cfe/trunk/include/clang/Driver/ToolChain.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/ToolChain.h?rev=223241&r1=223240&r2=223241&view=diff
==============================================================================
--- cfe/trunk/include/clang/Driver/ToolChain.h (original)
+++ cfe/trunk/include/clang/Driver/ToolChain.h Wed Dec  3 11:04:52 2014
@@ -251,7 +251,7 @@ public:
   /// getThreadModel() - Which thread model does this target use?
   virtual std::string getThreadModel() const { return "posix"; }
 
-  /// supportsThreadModel() - Does this target support a thread model?
+  /// isThreadModelSupported() - Does this target support a thread model?
   virtual bool isThreadModelSupported(const StringRef Model) const;
 
   /// ComputeLLVMTriple - Return the LLVM target triple to use, after taking





More information about the cfe-commits mailing list