diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-01-14 11:23:27 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-01-14 11:23:27 +0000 |
commit | 1b279144ecc41e788f7173892dfcc89f7ee6772a (patch) | |
tree | db8b458ce207ca8bb4a12b8e7d3bdef8c08cb1dd /lib/Option | |
parent | fd06dd8efcfd8620f5e87ce7e557df2c5ea68065 (diff) |
[cleanup] Re-sort all the #include lines in LLVM using
utils/sort_includes.py.
I clearly haven't done this in a while, so more changed than usual. This
even uncovered a missing include from the InstrProf library that I've
added. No functionality changed here, just mechanical cleanup of the
include order.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225974 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Option')
-rw-r--r-- | lib/Option/ArgList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Option/ArgList.cpp b/lib/Option/ArgList.cpp index 041e5522f47..b1a916d5c44 100644 --- a/lib/Option/ArgList.cpp +++ b/lib/Option/ArgList.cpp @@ -8,8 +8,8 @@ //===----------------------------------------------------------------------===// #include "llvm/Option/ArgList.h" -#include "llvm/ADT/SmallString.h" #include "llvm/ADT/STLExtras.h" +#include "llvm/ADT/SmallString.h" #include "llvm/ADT/Twine.h" #include "llvm/Option/Arg.h" #include "llvm/Option/Option.h" |