mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-10 02:38:50 +00:00
Check that the gcc front-end is not doing inlining
when not doing unit-at-a-time. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71986 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e4fdb8b8ff
commit
b1014743b9
17
test/FrontendC/2009-05-17-AlwaysInline.c
Normal file
17
test/FrontendC/2009-05-17-AlwaysInline.c
Normal file
@ -0,0 +1,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);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user