llvm-project/clang/test/CodeGen/user-func-gnu-inline-redecl.c
Fangrui Song c5de4dd1ea [test] %clang_cc1 -emit-llvm: remove redundant -S
And replace -emit-llvm -o - with -emit-llvm-only
2024-05-04 17:00:29 -07:00

21 lines
504 B
C

// RUN: %clang_cc1 -triple x86_64 -emit-llvm -O1 -o - %s | FileCheck %s
//
// Verifies that the gnu_inline version is ignored in favor of the redecl
extern inline __attribute__((gnu_inline)) unsigned long some_size(int c) {
return 1;
}
unsigned long mycall(int s) {
// CHECK-LABEL: i64 @mycall
// CHECK: ret i64 2
return some_size(s);
}
unsigned long some_size(int c) {
return 2;
}
unsigned long yourcall(int s) {
// CHECK-LABEL: i64 @yourcall
// CHECK: ret i64 2
return some_size(s);
}