blob: 11775673a7cc78a0d835f0df544b97be86ae2aa6 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm -O2 %s -o /dev/null
2// PR2292.
3__inline__ __attribute__ ((__pure__)) int g (void) {}
4void f (int k) { k = g (); }