A8.6.92 MCR (Encoding A1): if coproc == '101x' then SEE "Advanced SIMD and VFP"
[llvm/stm8.git] / test / FrontendC++ / 2009-05-04-PureConstNounwind.cpp
blobe275c340a9504e75496340c7ac143213c95b2079
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);
6 int f(void) {
7 return c() + p() + t();