1 // RUN: %clang_cc1 -triple x86_64 -emit-llvm -O1 -o - %s | FileCheck %s
3 // Verifies that the gnu_inline version is ignored in favor of the redecl
5 extern inline __attribute__((gnu_inline
)) unsigned long some_size(int c
) {
8 unsigned long mycall(int s
) {
9 // CHECK-LABEL: i64 @mycall
13 unsigned long some_size(int c
) {
16 unsigned long yourcall(int s
) {
17 // CHECK-LABEL: i64 @yourcall