10 lines · c
1// RUN: %clang_cc1 -x c %s -triple x86_64-linux-gnu -emit-llvm -o - | FileCheck %s2// RUN: %clang_cc1 -x c %s -triple x86_64-linux-gnu -emit-llvm -fno-builtin -o - | FileCheck %s3 4// CHECK: ; Function Attrs: returns_twice5// CHECK-NEXT: declare {{.*}} @vfork(6extern int vfork(void);7void test() {8 vfork();9}10