diff options
| author | Chris Lattner <sabre@nondot.org> | 2001-09-07 17:18:30 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2001-09-07 17:18:30 +0000 |
| commit | 23fcc08d38389bbc73b7d0ceac5bf4a6b6b79883 (patch) | |
| tree | 65c00194c8aaa45f170cb2c44c2e66fabf34175f | |
| parent | 74d07801bf2295f81ad746b1d0dabe782654d7d9 (diff) | |
| download | bcm5719-llvm-23fcc08d38389bbc73b7d0ceac5bf4a6b6b79883.tar.gz bcm5719-llvm-23fcc08d38389bbc73b7d0ceac5bf4a6b6b79883.zip | |
The header file for a translation unit should always be included first
System headers should be last
llvm-svn: 475
| -rw-r--r-- | llvm/lib/CodeGen/MachineInstr.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index d636d3af963..4a632587b62 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -13,17 +13,11 @@ //**************************************************************************/ -//************************** System Include Files ***************************/ - -#include <strstream> - - -//*************************** User Include Files ***************************/ - +#include "llvm/CodeGen/MachineInstr.h" #include "llvm/Method.h" #include "llvm/ConstPoolVals.h" #include "llvm/Instruction.h" -#include "llvm/CodeGen/MachineInstr.h" +#include <strstream> //************************ Class Implementations **************************/ |

