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 | 82fd8d8cdd207c6c48295dc5dcdc74b0a15ab978 (patch) | |
tree | c32df9f5fa37abc9749044d479d970b06e7f8562 /lib/CodeGen/ModuloScheduling | |
parent | 93127fbc4af36f14f47f23175b0e0908dd6c687c (diff) |
* ceil() requires #include <cmath> for compilation
* Alphabetize #includes
* Fix some lines to fit within 80 cols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15412 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ModuloScheduling')
-rw-r--r-- | lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp b/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp index 7cec3f1f13..dc3e1ae6de 100644 --- a/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp +++ b/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 |