blob: 4366b9b5659333f973cb7be41f62acd1092f2397 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3
4extern __inline long int
5__strtol_l (int a)
6{
7 return 0;
8}
9
10long int
11__strtol_l (int a)
12{
13 return 0;
14}