[mlir][acc] Introduce MappableType interface (#122146)
[llvm-project.git] / compiler-rt / test / orc / TestCases / FreeBSD / x86-64 / trivial-static-initializer.S
blobcf4d07aa5fa1efc5edde11b94dcc42998d0842e9
1 // Test that basic ELF static initializers work. The main function in this
2 // test returns the value of 'x', which is initially 1 in the data section,
3 // and reset to 0 if the _static_init function is run. If the static initializer
4 // does not run then main will return 1, causing the test to be treated as a
5 // failure.
6 //
7 // RUN: %clang -c -o %t %s
8 // RUN: %llvm_jitlink %t
10         .text
12         .globl  main
13         .p2align        4, 0x90
14 main:                                   # @main
15         movq    x@GOTPCREL(%rip), %rax
16         movl    (%rax), %eax
17         retq
19 # static initializer sets the value of 'x' to zero.
21         .p2align        4, 0x90
22 static_init:
23         movq    x@GOTPCREL(%rip), %rax
24         movl    $0, (%rax)
25         retq
27         .data
28         .globl  x
29         .p2align        2
31         .long   1
32         .size   x, 4
34         .section        .init_array,"aw",@init_array
35         .p2align        3
36         .quad   static_init