[Xtensa] Implement Windowed Register Option. (#124656)
[llvm-project.git] / llvm / test / CodeGen / AArch64 / cgdata-merge-gvar-nsconst.ll
blob490a778f69e2636eab470a65c999efd8b4e7787e
1 ; This test verifies that global variables (ns constant) are hashed based on their initial contents,
2 ; allowing them to be merged even if they appear different due to their names.
3 ; Now they become identical functions that can be merged without creating a parameter
5 ; RUN: llc -mtriple=arm64-apple-darwin -enable-global-merge-func=true -global-merging-skip-no-params=false < %s | FileCheck %s
7 ; CHECK: _f1.Tgm
8 ; CHECK: _f2.Tgm
10 %struct.__NSConstantString_tag = type { ptr, i32, ptr, i64 }
11 @__CFConstantStringClassReference = external global [0 x i32]
12 @.str.2 = private unnamed_addr constant [9 x i8] c"cfstring\00", section "__TEXT,__cstring,cstring_literals", align 1
13 @_unnamed_cfstring_ = private global %struct.__NSConstantString_tag { ptr @__CFConstantStringClassReference, i32 1992, ptr @.str.2, i64 8 }, section "__DATA,__cfstring", align 8
15 @.str.3 = private unnamed_addr constant [9 x i8] c"cfstring\00", section "__TEXT,__cstring,cstring_literals", align 1
16 @_unnamed_cfstring_.2 = private global %struct.__NSConstantString_tag { ptr @__CFConstantStringClassReference, i32 1992, ptr @.str.3, i64 8 }, section "__DATA,__cfstring", align 8
18 declare i32 @hoo(ptr noundef)
20 define i32 @f1() {
21 entry:
22   %call = tail call i32 @hoo(ptr noundef nonnull @_unnamed_cfstring_)
23   %add = sub nsw i32 %call, 1
24   ret i32 %add
27 define i32 @f2() {
28 entry:
29   %call = tail call i32 @hoo(ptr noundef nonnull @_unnamed_cfstring_.2)
30   %add = sub nsw i32 %call, 1
31   ret i32 %add