Remove check for Android in Mips.cpp (#123793)
[llvm-project.git] / llvm / test / ExecutionEngine / JITLink / x86-64 / COFF_abs.s
blobd69dbbdd70404aed7572eccfe954ee41787e4dda
1 # REQUIRES: asserts
2 # RUN: llvm-mc -filetype=obj -triple=x86_64-windows-msvc %s -o %t
3 # RUN: llvm-jitlink -num-threads=0 -debug-only=jitlink -noexec %t 2>&1 \
4 # RUN: | FileCheck %s
6 # Check absolute symbol is created with a correct value.
8 # CHECK: Creating graph symbols...
9 # CHECK: 6: Creating defined graph symbol for COFF symbol "abs" in (absolute) (index: -1)
10 # CHECK-NEXT: 0x53 (addressable + 0x00000000): size: 0x00000000, linkage: strong, scope: local, dead - abs
12 .text
13 .def abs;
14 .scl 3;
15 .type 0;
16 .endef
17 .globl abs
18 .set abs, 0x53
20 .def main;
21 .scl 2;
22 .type 32;
23 .endef
24 .globl main
25 .p2align 4, 0x90
26 main:
27 retq