Home | History | Annotate | Download | only in tests
      1 bits 64
      2 
      3 section .text
      4 
      5 bar:
      6 
      7 mov eax, [foo wrt rip]
      8 shl dword [foo wrt rip], 5
      9 cmp dword [foo wrt rip], 16
     10 cmp word [foo wrt rip], 10000
     11 cmp dword [foo wrt rip], 10000000
     12 je bar
     13 
     14 section .data
     15 
     16 foo:
     17 dd 5
     18