summaryrefslogtreecommitdiff
path: root/test/FrontendC/2009-05-17-AlwaysInline.c
blob: a93fabe052583bb3a2c1a25889b4bde5be80bb1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: %llvmgcc -S %s -O0 -o - -mllvm -disable-llvm-optzns | grep bar
// Check that the gcc inliner is turned off.

#include <stdio.h>
static __inline__ __attribute__ ((always_inline))
     int bar (int x)
{
  return 4;
}

void
foo ()
{
  long long b = 1;
  int Y = bar (4);
  printf ("%d\n", Y);
}