Change objfile::partial_symtabs to be a unique_ptr
[deliverable/binutils-gdb.git] / ld / testsuite / ld-plugin / pr13201.c
1 #include <math.h>
2 #include <stdio.h>
3 #include <stdlib.h>
4
5 int
6 main(int argc, char **argv)
7 {
8 double x;
9 if (argc > 1)
10 x = atof (argv[1]);
11 else
12 x = 3;
13 x = sin (x);
14 if (x > 0)
15 printf("OK\n");
16 return 0;
17 }
This page took 0.029154 seconds and 4 git commands to generate.