mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
ba1d8264e6
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92533 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
343 B
C
16 lines
343 B
C
// RUN: %llvmgcc -O2 -S -g %s -o - | llc -o 2010-01-05-LinkageName.s -O0
|
|
// RUN: %compile_c 2010-01-05-LinkageName.s -o 2010-01-05-LinkageName.s
|
|
|
|
struct tm {};
|
|
long mktime(struct tm *) __asm("_mktime$UNIX2003");
|
|
tzload(name, sp, doextend){}
|
|
long mktime(tmp)
|
|
struct tm *const tmp;
|
|
{
|
|
tzset();
|
|
}
|
|
timelocal(tmp) {
|
|
return mktime(tmp);
|
|
}
|
|
|