From 969bfdfe7f959d7adae1ad9dcf26e2fb134d7a47 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Tue, 24 Mar 2015 11:28:47 +0000 Subject: [PATCH] [float2int] Sort includes and add missing raw_ostream include. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233064 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/Float2Int.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lib/Transforms/Scalar/Float2Int.cpp b/lib/Transforms/Scalar/Float2Int.cpp index 2b3762df543..f889132e3db 100644 --- a/lib/Transforms/Scalar/Float2Int.cpp +++ b/lib/Transforms/Scalar/Float2Int.cpp @@ -13,23 +13,24 @@ //===----------------------------------------------------------------------===// #define DEBUG_TYPE "float2int" -#include "llvm/ADT/DenseMap.h" -#include "llvm/ADT/EquivalenceClasses.h" -#include "llvm/ADT/SmallVector.h" #include "llvm/ADT/APInt.h" #include "llvm/ADT/APSInt.h" +#include "llvm/ADT/DenseMap.h" +#include "llvm/ADT/EquivalenceClasses.h" #include "llvm/ADT/MapVector.h" -#include "llvm/IR/Constants.h" +#include "llvm/ADT/SmallVector.h" #include "llvm/IR/ConstantRange.h" +#include "llvm/IR/Constants.h" +#include "llvm/IR/IRBuilder.h" #include "llvm/IR/InstIterator.h" #include "llvm/IR/Instructions.h" -#include "llvm/IR/IRBuilder.h" #include "llvm/IR/Module.h" #include "llvm/Pass.h" #include "llvm/Support/Debug.h" +#include "llvm/Support/raw_ostream.h" #include "llvm/Transforms/Scalar.h" -#include // For std::function #include +#include // For std::function using namespace llvm; // The algorithm is simple. Start at instructions that convert from the -- 2.34.1