Use C++ math header instead of C version.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8648 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Brian Gaeke 2003-09-21 03:57:37 +00:00
parent 37bc4cce9b
commit bd353fb662
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
#include "Support/STLExtras.h"
#include "Support/SetOperations.h"
#include "Support/CommandLine.h"
#include <math.h>
#include <cmath>
RegAllocDebugLevel_t DEBUG_RA;

View File

@ -23,7 +23,7 @@
#include "Support/STLExtras.h"
#include "Support/SetOperations.h"
#include "Support/CommandLine.h"
#include <math.h>
#include <cmath>
RegAllocDebugLevel_t DEBUG_RA;