llvm-capstone/compiler-rt/test/msan/times.cc
Alexey Samsonov d06aa3dc00 [MSan] Remove explicit -m64 from RUN lines.
Target-specific flags should usually be configured by CMake/lit.

llvm-svn: 230999
2015-03-02 19:34:27 +00:00

21 lines
378 B
C++

// RUN: %clangxx_msan -O0 -g %s -o %t && %run %t
#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/times.h>
int main(void) {
struct tms t;
clock_t res = times(&t);
assert(res != (clock_t)-1);
if (t.tms_utime) printf("1\n");
if (t.tms_stime) printf("2\n");
if (t.tms_cutime) printf("3\n");
if (t.tms_cstime) printf("4\n");
return 0;
}