mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Add MCJIT test case for running global constructors.
llvm-svn: 168149
This commit is contained in:
parent
265971e784
commit
6ad9fb1a92
21
test/ExecutionEngine/MCJIT/test-global-ctors.ll
Normal file
21
test/ExecutionEngine/MCJIT/test-global-ctors.ll
Normal file
@ -0,0 +1,21 @@
|
||||
; RUN: %lli -mtriple=%mcjit_triple -use-mcjit %s > /dev/null
|
||||
@var = global i32 1, align 4
|
||||
@llvm.global_ctors = appending global [1 x { i32, void ()* }] [{ i32, void ()* } { i32 65535, void ()* @ctor_func }]
|
||||
@llvm.global_dtors = appending global [1 x { i32, void ()* }] [{ i32, void ()* } { i32 65535, void ()* @dtor_func }]
|
||||
|
||||
define i32 @main() nounwind {
|
||||
entry:
|
||||
%0 = load i32* @var, align 4
|
||||
ret i32 %0
|
||||
}
|
||||
|
||||
define internal void @ctor_func() section ".text.startup" {
|
||||
entry:
|
||||
store i32 0, i32* @var, align 4
|
||||
ret void
|
||||
}
|
||||
|
||||
define internal void @dtor_func() section ".text.startup" {
|
||||
entry:
|
||||
ret void
|
||||
}
|
Loading…
Reference in New Issue
Block a user