Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / AArch64 / arm64ec-entry-thunks-local-linkage.ll
blob217f08be0521808d9cf0b2ba5df8cd2b6d896f9c
1 ; RUN: llc -mtriple=arm64ec-pc-windows-msvc < %s | FileCheck %s
3 ; Validates when local linkage functions get a thunk generated.
5 ; Being called does not cause a thunk to be generated or the symbol name to be mangled.
6 ; CHECK-NOT: "#does_not_have_addr_taken":
7 ; CHECK-NOT:  $ientry_thunk$cdecl$v$f;
8 define internal void @does_not_have_addr_taken(float) nounwind {
9   ret void
11 define void @calls_does_not_have_addr_taken() nounwind {
12   call void @does_not_have_addr_taken(float 0.0)
13   ret void
16 ; Having an address taken does cause a thunk to be generated and the symbol name to be mangled.
17 ; CHECK: "#has_addr_taken":
18 ; CHECK: $ientry_thunk$cdecl$v$i8;
19 define internal void @has_addr_taken(i64) nounwind {
20   ret void
22 @points_to_has_addr_taken = global ptr @has_addr_taken