blob: a4b4653e122ebfb63137a038f2e463cd057eaf03 [file] [log] [blame]
Mike Stumpfe095f32009-05-04 18:40:41 +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}