[llvm] f6187c7 - [llvm-driver] Fix header order of llvm-driver-template
    Thomas Preud'homme via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Mon Apr 29 07:50:37 PDT 2024
    
    
  
Author: Thomas Preud'homme
Date: 2024-04-29T15:50:22+01:00
New Revision: f6187c76595d576ee75252eee3bf199e91bd276f
URL: https://github.com/llvm/llvm-project/commit/f6187c76595d576ee75252eee3bf199e91bd276f
DIFF: https://github.com/llvm/llvm-project/commit/f6187c76595d576ee75252eee3bf199e91bd276f.diff
LOG: [llvm-driver] Fix header order of llvm-driver-template
Added: 
    
Modified: 
    llvm/cmake/modules/llvm-driver-template.cpp.in
Removed: 
    
################################################################################
diff  --git a/llvm/cmake/modules/llvm-driver-template.cpp.in b/llvm/cmake/modules/llvm-driver-template.cpp.in
index 71aca6cd140cb5..1470ef1f061643 100644
--- a/llvm/cmake/modules/llvm-driver-template.cpp.in
+++ b/llvm/cmake/modules/llvm-driver-template.cpp.in
@@ -6,9 +6,9 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "llvm/Support/LLVMDriver.h"
 #include "llvm/ADT/ArrayRef.h"
 #include "llvm/Support/InitLLVM.h"
+#include "llvm/Support/LLVMDriver.h"
 
 int @TOOL_NAME at _main(int argc, char **, const llvm::ToolContext &);
 
        
    
    
More information about the llvm-commits
mailing list