[llvm] c941b64 - IRBuilder.cpp - fix include sorting order. NFC.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 25 06:22:58 PDT 2020


Author: Simon Pilgrim
Date: 2020-06-25T14:22:20+01:00
New Revision: c941b643e682168733297aaf1fae252b87808d35

URL: https://github.com/llvm/llvm-project/commit/c941b643e682168733297aaf1fae252b87808d35
DIFF: https://github.com/llvm/llvm-project/commit/c941b643e682168733297aaf1fae252b87808d35.diff

LOG: IRBuilder.cpp - fix include sorting order. NFC.

Added: 
    

Modified: 
    llvm/lib/IR/IRBuilder.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/IR/IRBuilder.cpp b/llvm/lib/IR/IRBuilder.cpp
index 3bb81b96eebc..b87dfe1c8df6 100644
--- a/llvm/lib/IR/IRBuilder.cpp
+++ b/llvm/lib/IR/IRBuilder.cpp
@@ -23,8 +23,8 @@
 #include "llvm/IR/IntrinsicInst.h"
 #include "llvm/IR/Intrinsics.h"
 #include "llvm/IR/LLVMContext.h"
-#include "llvm/IR/Operator.h"
 #include "llvm/IR/NoFolder.h"
+#include "llvm/IR/Operator.h"
 #include "llvm/IR/Statepoint.h"
 #include "llvm/IR/Type.h"
 #include "llvm/IR/Value.h"


        


More information about the llvm-commits mailing list