diff options
| author | Brian Gaeke <gaeke@uiuc.edu> | 2004-04-16 15:57:32 +0000 | 
|---|---|---|
| committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-04-16 15:57:32 +0000 | 
| commit | 174633b078b3ecc9fb82fc54c0fba689b4f62fe1 (patch) | |
| tree | a5b6b5a10061b2dbd8f388484a2cd099c16c43bd /llvm/lib/Transforms | |
| parent | 8bd536a31164802da61f9a769f189822b31befbd (diff) | |
| download | bcm5719-llvm-174633b078b3ecc9fb82fc54c0fba689b4f62fe1.tar.gz bcm5719-llvm-174633b078b3ecc9fb82fc54c0fba689b4f62fe1.zip | |
Include <cmath> for compatibility with gcc 3.0.x (the system compiler on
Debian.)
llvm-svn: 12986
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/Utils/Local.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/llvm/lib/Transforms/Utils/Local.cpp b/llvm/lib/Transforms/Utils/Local.cpp index 29132c06809..76a22a44dd0 100644 --- a/llvm/lib/Transforms/Utils/Local.cpp +++ b/llvm/lib/Transforms/Utils/Local.cpp @@ -15,6 +15,7 @@  #include "llvm/Transforms/Utils/Local.h"  #include "llvm/Constants.h"  #include "llvm/Instructions.h" +#include <cmath>  using namespace llvm;  //===----------------------------------------------------------------------===// | 

