mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
11 lines
153 B
C
11 lines
153 B
C
|
// RUN: %llvmgcc -S -o - -emit-llvm %s
|
||
|
// PR1083
|
||
|
|
||
|
int svc_register (void (*dispatch) (int));
|
||
|
|
||
|
int svc_register (dispatch)
|
||
|
void (*dispatch) ();
|
||
|
{
|
||
|
}
|
||
|
|