1 // Test that we can have a statement that throws in hot cold
2 // and a landing pad in cold code.
4 // Record performance data with no args. Run test with 2 args.
9 int foo() { return 0; }
16 void filter_only() { foo(); }
18 int main(int argc
, char **argv
) {
21 uint64_t limit
= (argc
>= 2 ? 10 : 5000);
22 for (uint64_t i
= 0; i
< limit
; ++i
) {