Silence a VS warning.

llvm-svn: 19377
This commit is contained in:
Chris Lattner 2005-01-08 19:31:31 +00:00
parent b52e041c80
commit 2c5e4ed8f9
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ Timer::~Timer() {
static inline long getMemUsage() {
if (TrackSpace)
return sys::Process::GetMallocUsage();
return (long)sys::Process::GetMallocUsage();
return 0;
}