http://llvm.org/bugs/show_bug.cgi?id=15823

Alexey Samsonov <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #9 from Alexey Samsonov <[email protected]> ---
I've implemented Alexander's suggestion in r215940.
$ cat clock_gettime.c 
#include <stdio.h>
#include <time.h>

int main() {
  struct timespec ts;
  clock_gettime(CLOCK_REALTIME, &ts);
  return 0;
}
$ ./bin/clang -fsanitize=address -Wl,-as-needed clock_gettime.c && ./a.out

Please reopen this bug if you still see errors.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to