xref: /llvm-project/clang/test/CodeGen/redef-ext-inline.c (revision 0f1c1be1968076d6f96f8a7bcc4a15cf195ecd97)
1 // RUN: %clang_cc1 -emit-llvm %s -o - -std=gnu89
2 
f1(void)3 extern inline int f1 (void) {return 1;}
f3(void)4 int f3 (void) {return f1();}
f1(void)5 int f1 (void) {return 0;}
6