blob: a4b4653e122ebfb63137a038f2e463cd057eaf03 [file] [log] [blame]
asl7a969d82009-05-04 19:10:38 +00001// RUN: %llvmgxx -S -emit-llvm %s -o - | grep nounwind | count 4
2int c(void) __attribute__((const));
3int p(void) __attribute__((pure));
4int t(void);
5
6int f(void) {
7 return c() + p() + t();
8}