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/SimplifyLibCalls.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/SimplifyLibCalls.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp b/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp index 94decae8562..8e0481df8dc 100644 --- a/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp +++ b/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp @@ -18,6 +18,7 @@ #include "llvm/ADT/SmallString.h" #include "llvm/ADT/StringMap.h" #include "llvm/ADT/Triple.h" +#include "llvm/Analysis/TargetLibraryInfo.h" #include "llvm/Analysis/ValueTracking.h" #include "llvm/IR/DataLayout.h" #include "llvm/IR/DiagnosticInfo.h" @@ -30,7 +31,6 @@ #include "llvm/IR/PatternMatch.h" #include "llvm/Support/Allocator.h" #include "llvm/Support/CommandLine.h" -#include "llvm/Analysis/TargetLibraryInfo.h" #include "llvm/Transforms/Utils/BuildLibCalls.h" #include "llvm/Transforms/Utils/Local.h" |