aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/libcall-1.c
blob: c1b1cfc61395bf9a5bb43158281a489d00283ea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Failed on ARM because rtx_varies_p didn't like the REG_EQUAL notes
   generated for libcalls.
   http://gcc.gnu.org/ml/gcc-patches/2004-02/msg01518.html */
static const char digs[] = "0123456789ABCDEF";
int __attribute__((pure)) bar();

int foo (int i)
{
  int len;
  if (i)
    return 0;
  len = bar();
  return digs[len];
}