diff options
author | Weiming Zhao <weimingz@codeaurora.org> | 2015-11-24 18:57:06 +0000 |
---|---|---|
committer | Weiming Zhao <weimingz@codeaurora.org> | 2015-11-24 18:57:06 +0000 |
commit | 45d4cb9a14b532f282966d27f93f1c04b4fd4bac (patch) | |
tree | b83e943a4cb8f0552d7445bddb7792c71941dc60 /llvm/lib/Transforms/Utils/SimplifyInstructions.cpp | |
parent | 9aa5686b9fe6623d76893d0afa7d4976e873bed7 (diff) | |
download | bcm5719-llvm-45d4cb9a14b532f282966d27f93f1c04b4fd4bac.tar.gz bcm5719-llvm-45d4cb9a14b532f282966d27f93f1c04b4fd4bac.zip |
[Utils] Put includes in correct order. NFC.
Summary:
Followed the guidelines in:
http://llvm.org/docs/CodingStandards.html#include-style
However, I noticed that uppercase named headers come before lowercase ones
throughout the codebase. So kept them as is.
Patch by Mandeep Singh Grang <mgrang@codeaurora.org>
Reviewers: majnemer, davide, jmolloy, atrick
Subscribers: sanjoy
Differential Revision: http://reviews.llvm.org/D14939
llvm-svn: 254005
Diffstat (limited to 'llvm/lib/Transforms/Utils/SimplifyInstructions.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/SimplifyInstructions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp b/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp index 40ab33d7bd8..d5377f9a4c1 100644 --- a/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp +++ b/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp @@ -20,12 +20,12 @@ #include "llvm/ADT/Statistic.h" #include "llvm/Analysis/AssumptionCache.h" #include "llvm/Analysis/InstructionSimplify.h" +#include "llvm/Analysis/TargetLibraryInfo.h" #include "llvm/IR/DataLayout.h" #include "llvm/IR/Dominators.h" #include "llvm/IR/Function.h" #include "llvm/IR/Type.h" #include "llvm/Pass.h" -#include "llvm/Analysis/TargetLibraryInfo.h" #include "llvm/Transforms/Utils/Local.h" using namespace llvm; |