[Orc] Revert 234815. Still haven't quite got this test figured out apparently.
[oota-llvm.git] / test / ExecutionEngine / OrcLazy / hello.ll
1 ; RUN: lli -jit-kind=orc-lazy %s | FileCheck %s
2 ;
3 ; CHECK: Hello
4 ; CHECK-NEXT: Goodbye
5
6 %class.Foo = type { i8 }
7
8 @f = global %class.Foo zeroinitializer, align 1
9 @__dso_handle = external global i8
10 @llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_hello.cpp, i8* null }]
11 @str = private unnamed_addr constant [6 x i8] c"Hello\00"
12 @str2 = private unnamed_addr constant [8 x i8] c"Goodbye\00"
13
14 define linkonce_odr void @_ZN3FooD1Ev(%class.Foo* nocapture readnone %this) unnamed_addr align 2 {
15 entry:
16   %puts.i = tail call i32 @puts(i8* getelementptr inbounds ([8 x i8], [8 x i8]* @str2, i64 0, i64 0))
17   ret void
18 }
19
20 declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*)
21
22 define i32 @main(i32 %argc, i8** nocapture readnone %argv) {
23 entry:
24   ret i32 0
25 }
26
27 define internal void @_GLOBAL__sub_I_hello.cpp() {
28 entry:
29   %puts.i.i.i = tail call i32 @puts(i8* getelementptr inbounds ([6 x i8], [6 x i8]* @str, i64 0, i64 0))
30   %0 = tail call i32 @__cxa_atexit(void (i8*)* bitcast (void (%class.Foo*)* @_ZN3FooD1Ev to void (i8*)*), i8* getelementptr inbounds (%class.Foo, %class.Foo* @f, i64 0, i32 0), i8* @__dso_handle)
31   ret void
32 }
33
34 declare i32 @puts(i8* nocapture readonly)