reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
; RUN: llvm-mc -triple avr -mattr=jmpcall -show-encoding < %s | FileCheck %s


foo:

  call  4096
  call  -124
  call   -12
  call   0

; CHECK: call  4096                 ; encoding: [0x0e,0x94,0x00,0x08]
; CHECK: call -124                  ; encoding: [0xff,0x95,0xc2,0xff]
; CHECK: call -12                   ; encoding: [0xff,0x95,0xfa,0xff]
; CHECK: call  0                    ; encoding: [0x0e,0x94,0x00,0x00]