Skip to content

Commit b9bed1f

Browse files
committed
[test] Improve tests for alias/ifunc attributes
1 parent 9bd1085 commit b9bed1f

File tree

3 files changed

+81
-7
lines changed

3 files changed

+81
-7
lines changed

clang/test/Sema/alias-unused-win.cpp

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// RUN: %clang_cc1 -triple %ms_abi_triple -Wunused -x c -verify %s
2+
// RUN: %clang_cc1 -triple %ms_abi_triple -Wunused -verify=expected,cxx %s
3+
4+
#ifdef __cplusplus
5+
extern "C" {
6+
#endif
7+
static int f(void) { return 42; } // cxx-warning{{unused function 'f'}}
8+
int g(void) __attribute__((alias("f")));
9+
10+
static int foo [] = { 42, 0xDEAD }; // cxx-warning{{variable 'foo' is not needed and will not be emitted}}
11+
extern typeof(foo) bar __attribute__((unused, alias("foo")));
12+
13+
static int __attribute__((overloadable)) f0(int x) { return x; } // expected-warning{{unused function 'f0'}}
14+
static float __attribute__((overloadable)) f0(float x) { return x; } // expected-warning{{unused function 'f0'}}
15+
int g0(void) __attribute__((alias("?f0@@YAHH@Z")));
16+
17+
#ifdef __cplusplus
18+
/// https://github.com/llvm/llvm-project/issues/88593
19+
/// We report a warning in C++ mode because the internal linkage `resolver` gets
20+
/// mangled as it does not have a language linkage. GCC does not mangle
21+
/// `resolver` or report a warning.
22+
static int f1() { return 42; } // cxx-warning{{unused function 'f1'}}
23+
int g1(void) __attribute__((alias("?f1@@YAHXZ")));
24+
}
25+
26+
namespace ns {
27+
static int f3(int) { return 42; } // cxx-warning{{unused function 'f3'}}
28+
static int f3() { return 42; } // cxx-warning{{unused function 'f3'}}
29+
int g3() __attribute__((alias("?f3@ns@@YAHXZ")));
30+
}
31+
#endif

clang/test/Sema/alias-unused.c

Lines changed: 0 additions & 7 deletions
This file was deleted.

clang/test/Sema/alias-unused.cpp

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
// RUN: %clang_cc1 -triple %itanium_abi_triple -Wunused -x c -verify %s
2+
// RUN: %clang_cc1 -triple %itanium_abi_triple -Wunused -verify=expected,cxx %s
3+
4+
#ifdef __cplusplus
5+
extern "C" {
6+
#endif
7+
static int f(void) { return 42; }
8+
int g(void) __attribute__((alias("f")));
9+
10+
static int foo [] = { 42, 0xDEAD }; // cxx-warning{{variable 'foo' is not needed and will not be emitted}}
11+
extern typeof(foo) bar __attribute__((unused, alias("foo")));
12+
13+
/// https://github.com/llvm/llvm-project/issues/88593
14+
/// We report a warning in C++ mode because the internal linkage `resolver` gets
15+
/// mangled as it does not have a language linkage. GCC does not mangle
16+
/// `resolver` or report a warning.
17+
static int (*resolver(void))(void) { return f; } // expected-warning{{unused function 'resolver'}}
18+
int ifunc(void) __attribute__((ifunc("resolver")));
19+
20+
static int __attribute__((overloadable)) f0(int x) { return x; } // expected-warning{{unused function 'f0'}}
21+
static float __attribute__((overloadable)) f0(float x) { return x; } // expected-warning{{unused function 'f0'}}
22+
int g0(void) __attribute__((alias("_ZL2f0i")));
23+
24+
#ifdef __cplusplus
25+
static int f1() { return 42; } // expected-warning{{unused function 'f1'}}
26+
int g1(void) __attribute__((alias("_ZL2f1v")));
27+
}
28+
29+
static int f2(int) { return 42; } // expected-warning{{unused function 'f2'}}
30+
static int f2() { return 42; } // expected-warning{{unused function 'f2'}}
31+
int g2() __attribute__((alias("_ZL2f2v")));
32+
33+
static int (*resolver1())() { return f; } // expected-warning{{unused function 'resolver1'}}
34+
static int (*resolver1(int))() { return f; } // expected-warning{{unused function 'resolver1'}}
35+
int ifunc1() __attribute__((ifunc("_ZL9resolver1i")));
36+
37+
/// TODO: We should report "unused function" for f3(int).
38+
namespace ns {
39+
static int f3(int) { return 42; } // cxx-warning{{unused function 'f3'}}
40+
static int f3() { return 42; } // cxx-warning{{unused function 'f3'}}
41+
int g3() __attribute__((alias("_ZN2nsL2f3Ev")));
42+
}
43+
44+
template <class T>
45+
static void *f4(T) { return nullptr; }
46+
static void *f4() { return nullptr; } // cxx-warning{{unused function 'f4'}}
47+
extern void g4_int() __attribute__((ifunc("_ZL2f4IiEPvT_")));
48+
extern void g4_char() __attribute__((ifunc("_ZL2f4IcEPcT_"))); // rejected by CodeGen
49+
void *use4 = f4(0);
50+
#endif

0 commit comments

Comments
 (0)