aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.apple/lazy-ptr-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.apple/lazy-ptr-test.c')
-rw-r--r--gcc/testsuite/gcc.apple/lazy-ptr-test.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.apple/lazy-ptr-test.c b/gcc/testsuite/gcc.apple/lazy-ptr-test.c
new file mode 100644
index 00000000000..da66b518ff0
--- /dev/null
+++ b/gcc/testsuite/gcc.apple/lazy-ptr-test.c
@@ -0,0 +1,18 @@
+/* { dg-do compile { target powerpc*-apple-darwin* } } */
+/* { dg-options "-S" } */
+
+void f () __attribute__((weak_import));
+
+typedef void PF (void);
+
+void f(void){};
+
+PF* g (void) { return f; }
+
+int main()
+{
+ (*g())();
+ return 0;
+}
+
+/* { dg-final { scan-assembler "non_lazy_ptr" } } */