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/TableGen/CodeGenInstruction.cpp | |
parent | 130cec21b9030cc83837f256276edfefdf6721da (diff) | |
download | bcm5719-llvm-91d19d8e930a955766fa69f1d847be89ead2f8c4.tar.gz bcm5719-llvm-91d19d8e930a955766fa69f1d847be89ead2f8c4.zip |
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/TableGen/CodeGenInstruction.cpp')
-rw-r--r-- | llvm/utils/TableGen/CodeGenInstruction.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/utils/TableGen/CodeGenInstruction.cpp b/llvm/utils/TableGen/CodeGenInstruction.cpp index 0a8684d3da5..367320498f5 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.cpp +++ b/llvm/utils/TableGen/CodeGenInstruction.cpp @@ -13,11 +13,11 @@ #include "CodeGenInstruction.h" #include "CodeGenTarget.h" -#include "llvm/TableGen/Error.h" -#include "llvm/TableGen/Record.h" +#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/StringExtras.h" #include "llvm/ADT/StringMap.h" -#include "llvm/ADT/STLExtras.h" +#include "llvm/TableGen/Error.h" +#include "llvm/TableGen/Record.h" #include <set> using namespace llvm; |