1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Another portability fix provided via Casey Carter:

ISSUE: getTimeRecord in lib/VMCore/Pass.cpp uses timeval and
gettimeofday() without including sys/time.h.

ACTION: Include sys/time.h.
llvm-svn: 3699
This commit is contained in:
Chris Lattner 2002-09-13 14:47:12 +00:00
parent c96a7a51bf
commit dfd0d44c99

View File

@ -13,6 +13,7 @@
#include "Support/TypeInfo.h"
#include <stdio.h>
#include <sys/resource.h>
#include <sys/time.h>
#include <sys/unistd.h>
#include <set>