blob: 9c1a2155032d243c6c7032d465c4ea8d461d4c60 [file] [log] [blame]
Devang Patelba1d8262010-01-04 23:04:36 +00001// RUN: %llvmgcc -O2 -S -g %s -o - | llc -o 2010-01-05-LinkageName.s -O0
2// RUN: %compile_c 2010-01-05-LinkageName.s -o 2010-01-05-LinkageName.s
3
4struct tm {};
5long mktime(struct tm *) __asm("_mktime$UNIX2003");
6tzload(name, sp, doextend){}
7long mktime(tmp)
8 struct tm *const tmp;
9{
10 tzset();
11}
12timelocal(tmp) {
13 return mktime(tmp);
14}
15