diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-08-02 13:59:10 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-08-02 13:59:10 +0000 |
commit | 8481785391453b050796a1cfebdbd61aac151355 (patch) | |
tree | 75cf653bd6518b50f3b31a322844a62c5c292a16 /llvm/lib | |
parent | ac44389c8316d6a349690394cf88dc4f01789475 (diff) | |
download | bcm5719-llvm-8481785391453b050796a1cfebdbd61aac151355.tar.gz bcm5719-llvm-8481785391453b050796a1cfebdbd61aac151355.zip |
* ceil() requires #include <cmath> for compilation
* Alphabetize #includes
* Fix some lines to fit within 80 cols
llvm-svn: 15412
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp b/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp index 7cec3f1f13f..dc3e1ae6de0 100644 --- a/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp +++ b/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp @@ -9,6 +9,7 @@ // // This ModuloScheduling pass is based on the Swing Modulo Scheduling // algorithm. +// //===----------------------------------------------------------------------===// #define DEBUG_TYPE "ModuloSched" @@ -26,13 +27,13 @@ #include "Support/Debug.h" #include "Support/GraphWriter.h" #include "Support/StringExtras.h" -#include <vector> -#include <utility> +#include <cmath> #include <fstream> #include <sstream> +#include <utility> +#include <vector> #include "../../Target/SparcV9/SparcV9Internals.h" #include "../../Target/SparcV9/SparcV9RegisterInfo.h" - using namespace llvm; /// Create ModuloSchedulingPass |