[flang-commits] [flang] dcb2ddd - [flang][driver] Fix spelling (nfc)
    Andrzej Warzynski via flang-commits 
    flang-commits at lists.llvm.org
       
    Thu Apr 28 03:38:13 PDT 2022
    
    
  
Author: Andrzej Warzynski
Date: 2022-04-28T10:37:27Z
New Revision: dcb2ddd6c925e6e4058ca41d2fb0833957fabeb3
URL: https://github.com/llvm/llvm-project/commit/dcb2ddd6c925e6e4058ca41d2fb0833957fabeb3
DIFF: https://github.com/llvm/llvm-project/commit/dcb2ddd6c925e6e4058ca41d2fb0833957fabeb3.diff
LOG: [flang][driver] Fix spelling (nfc)
Merely making sure that we use consistent spelling.
Added: 
    
Modified: 
    flang/include/flang/Frontend/CompilerInvocation.h
Removed: 
    
################################################################################
diff  --git a/flang/include/flang/Frontend/CompilerInvocation.h b/flang/include/flang/Frontend/CompilerInvocation.h
index 5b335cd0a4fd1..f99725890ea76 100644
--- a/flang/include/flang/Frontend/CompilerInvocation.h
+++ b/flang/include/flang/Frontend/CompilerInvocation.h
@@ -122,7 +122,7 @@ class CompilerInvocation : public CompilerInvocationBase {
   const Fortran::parser::Options &fortranOpts() const { return parserOpts_; }
 
   TargetOptions &targetOpts() { return targetOpts_; }
-  const TargetOptions &TargetOpts() const { return targetOpts_; }
+  const TargetOptions &targetOpts() const { return targetOpts_; }
 
   Fortran::semantics::SemanticsContext &semanticsContext() {
     return *semanticsContext_;
        
    
    
More information about the flang-commits
mailing list