XFAIL some PIC16 tests when running under valgrind-leaks. I don't expect these
[oota-llvm.git] / test / CodeGen / PIC16 / globals.ll
1 ; RUN: llc < %s -march=pic16 | FileCheck %s
2 ; XFAIL: vg_leak
3
4 @G1 = global i32 4712, section "Address=412"
5 ; CHECK: @G1.412..user_section.#        IDATA   412
6 ; CHECK: @G1
7 ; CHECK:     dl 4712
8
9 @G2 = global i32 0, section "Address=412"
10 ; CHECK: @G2.412..user_section.#        UDATA   412
11 ; CHECK: @G2 RES 4
12
13 @G3 = addrspace(1) constant i32 4712, section "Address=412"
14 ; CHECK: @G3.412..user_section.#        ROMDATA 412
15 ; CHECK: @G3
16 ; CHECK:     rom_dl 4712
17
18