Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / 2004-01-08-ExternInlineRedefine.c
blob358a9c28f775640777166f4067215a22ff6a23e3
1 // RUN: %clang_cc1 -std=gnu89 -emit-llvm %s -o /dev/null
4 extern __inline long int
5 __strtol_l (int a)
7 return 0;
10 long int
11 __strtol_l (int a)
13 return 0;