• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %llvmgxx -S %s -o - | grep nounwind | count 4
2 int c(void) __attribute__((const));
3 int p(void) __attribute__((pure));
4 int t(void);
5 
f(void)6 int f(void) {
7 	return c() + p() + t();
8 }
9