mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
ae8a483328
llvm-svn: 72023
18 lines
300 B
C
18 lines
300 B
C
// 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);
|
|
}
|