tcl global directive outside proc body does nothing (ld)
[deliverable/binutils-gdb.git] / ld / testsuite / ld-plugin / lto-12a.c
CommitLineData
af55061b
L
1#include <stdio.h>
2#include <stdlib.h>
3
4extern int value;
5
6int
7main (int argc, char **argv)
8{
9 int n = 10 * (argc + 1);
10 char *p = malloc (n);
11 __builtin_memcpy (p, argv[0], n);
12 if (value != -1)
13 abort ();
14 printf ("OK\n");
15 return 0;
16}
This page took 0.399798 seconds and 4 git commands to generate.