1UNSUPPORTED: darwin, target=aarch64{{.*}} 2RUN: %cpp_compiler %S/PrintFuncTest.cpp -o %t 3RUN: %run %t -seed=1 -runs=100000 2>&1 | FileCheck %s 4RUN: %run %t -seed=1 -runs=100000 -print_funcs=0 2>&1 | FileCheck %s --check-prefix=NO 5CHECK: NEW_FUNC{{.*}} FunctionA 6CHECK: NEW_FUNC{{.*}} FunctionB 7CHECK: NEW_FUNC{{.*}} FunctionC 8CHECK: BINGO 9 10NO-NOT: NEW_FUNC 11NO: BINGO 12