mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-13 00:10:37 +00:00
7 lines
98 B
C
7 lines
98 B
C
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
|
|
|
|
extern int vfork(void);
|
|
test() {
|
|
vfork();
|
|
}
|