[llvm-commits] [llvm] r71986 - /llvm/trunk/test/FrontendC/2009-05-17-AlwaysInline.c
Duncan Sands
baldrick at free.fr
Sun May 17 12:37:02 PDT 2009
Author: baldrick
Date: Sun May 17 14:37:02 2009
New Revision: 71986
URL: http://llvm.org/viewvc/llvm-project?rev=71986&view=rev
Log:
Check that the gcc front-end is not doing inlining
when not doing unit-at-a-time.
Added:
llvm/trunk/test/FrontendC/2009-05-17-AlwaysInline.c
Added: llvm/trunk/test/FrontendC/2009-05-17-AlwaysInline.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC/2009-05-17-AlwaysInline.c?rev=71986&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC/2009-05-17-AlwaysInline.c (added)
+++ llvm/trunk/test/FrontendC/2009-05-17-AlwaysInline.c Sun May 17 14:37:02 2009
@@ -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);
+}
More information about the llvm-commits
mailing list