Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / orc / TestCases / Linux / aarch64 / lljit-initialize-deinitialize.ll
blob34bfc10b9d897388f74b89d1e2d085e34499ff3d
1 ; RUN: %lli_orc_jitlink %s | FileCheck %s
3 ; CHECK: constructor
4 ; CHECK-NEXT: main
5 ; CHECK-NEXT: destructor
7 @__dso_handle = external hidden global i8
8 @.str = private unnamed_addr constant [5 x i8] c"main\00", align 1
9 @.str.1 = private unnamed_addr constant [12 x i8] c"constructor\00", align 1
10 @.str.2 = private unnamed_addr constant [11 x i8] c"destructor\00", align 1
11 @llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @constructor, i8* null }]
13 define dso_local void @destructor(i8* %0) {
14   %2 = tail call i32 @puts(i8* nonnull dereferenceable(1) getelementptr inbounds ([11 x i8], [11 x i8]* @.str.2, i64 0, i64 0))
15   ret void
18 declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*)
20 ; Function Attrs: nofree norecurse nounwind uwtable
21 define dso_local i32 @main(i32 %0, i8** nocapture readnone %1) local_unnamed_addr #2 {
22   %3 = tail call i32 @puts(i8* nonnull dereferenceable(1) getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0))
23   ret i32 0
26 declare i32 @puts(i8* nocapture readonly)
28 define internal void @constructor() {
29   %1 = tail call i32 @puts(i8* nonnull dereferenceable(1) getelementptr inbounds ([12 x i8], [12 x i8]* @.str.1, i64 0, i64 0)) #5
30   %2 = tail call i32 @__cxa_atexit(void (i8*)* @destructor, i8* null, i8* nonnull @__dso_handle) #5
31   ret void