diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 10:37:14 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 10:37:14 +0000 |
| commit | 91d19d8e930a955766fa69f1d847be89ead2f8c4 (patch) | |
| tree | 272c55fc7295bc35478b35bde0c50b8161ebbb8d /llvm/utils/FileCheck/FileCheck.cpp | |
| parent | 130cec21b9030cc83837f256276edfefdf6721da (diff) | |
| download | llvm-91d19d8e930a955766fa69f1d847be89ead2f8c4.zip llvm-91d19d8e930a955766fa69f1d847be89ead2f8c4.tar.gz llvm-91d19d8e930a955766fa69f1d847be89ead2f8c4.tar.bz2 | |
Sort the #include lines for utils/...
I've tried to find main moudle headers where possible, but the TableGen
stuff may warrant someone else looking at it.
llvm-svn: 169251
Diffstat (limited to 'llvm/utils/FileCheck/FileCheck.cpp')
| -rw-r--r-- | llvm/utils/FileCheck/FileCheck.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/utils/FileCheck/FileCheck.cpp b/llvm/utils/FileCheck/FileCheck.cpp index c1d017f..a0eeb0ed 100644 --- a/llvm/utils/FileCheck/FileCheck.cpp +++ b/llvm/utils/FileCheck/FileCheck.cpp @@ -17,17 +17,17 @@ //===----------------------------------------------------------------------===// #include "llvm/ADT/OwningPtr.h" +#include "llvm/ADT/SmallString.h" +#include "llvm/ADT/StringExtras.h" +#include "llvm/ADT/StringMap.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/PrettyStackTrace.h" #include "llvm/Support/Regex.h" +#include "llvm/Support/Signals.h" #include "llvm/Support/SourceMgr.h" #include "llvm/Support/raw_ostream.h" -#include "llvm/Support/Signals.h" #include "llvm/Support/system_error.h" -#include "llvm/ADT/SmallString.h" -#include "llvm/ADT/StringExtras.h" -#include "llvm/ADT/StringMap.h" #include <algorithm> #include <map> #include <string> |
