http://llvm.org/bugs/show_bug.cgi?id=5234
Summary: llvm-gcc doesn't honor -fno-inline?
Product: tools
Version: trunk
Platform: PC
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: llvm-gcc
AssignedTo: [email protected]
ReportedBy: [email protected]
CC: [email protected]
I don't think this is intentional?
--
ddun...@giles:tmp$ cat t.cpp
static int f0() { return 1; }
int f1() { return f0(); }
ddun...@giles:tmp$ llvm-gcc -fno-inline -O3 -m32 -S -o - t.cpp
.section __TEXT,__text,regular,pure_instructions
.align 4, 0x90
.globl __Z2f1v
__Z2f1v:
pushl %ebp
movl %esp, %ebp
movl $1, %eax
popl %ebp
ret
.subsections_via_symbols
ddun...@giles:tmp$
--
--
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs