Lines Matching full:addend

1 ## Test how obj2yaml emits relocation addend descriptions.
6 ## Check how obj2yaml dumps an addend with an arbitrary positive value.
8 # RUN: yaml2obj --docnum=1 %s -o %t1 -D ADDEND=1
14 # ELF64-NEXT: Addend: [[ADDEND]]
16 ## Check how obj2yaml dumps an addend with an arbitrary negative value.
18 # RUN: yaml2obj --docnum=1 %s -o %t2 -D ADDEND=-1
21 ## Check how obj2yaml dumps an addend with the value INT64_MAX.
22 # RUN: yaml2obj --docnum=1 %s -o %t3 -D ADDEND=9223372036854775807
25 ## Check how obj2yaml dumps an addend with the value INT64_MIN.
26 # RUN: yaml2obj --docnum=1 %s -o %t4 -D ADDEND=-9223372036854775808
46 Addend: [[ADDEND]]
51 # RUN: yaml2obj --docnum=1 %s -o %t5 -D ADDEND=0
52 # RUN: obj2yaml %t5 | FileCheck %s --implicit-check-not="Addend:"
53 # RUN: yaml2obj --docnum=1 %s -o %t6 -D ADDEND=0x0
54 # RUN: obj2yaml %t6 | FileCheck %s --implicit-check-not="Addend:"
58 ## Check how obj2yaml dumps an addend with an arbitrary positive value.
60 # RUN: yaml2obj --docnum=2 %s -o %t7 -D ADDEND=1
66 # ELF32-NEXT: Addend: [[ADDEND]]
68 ## Check how obj2yaml dumps an addend with an arbitrary negative value.
70 # RUN: yaml2obj --docnum=2 %s -o %t8 -D ADDEND=-1
73 ## Check how obj2yaml dumps an addend with the value INT32_MAX.
74 # RUN: yaml2obj --docnum=2 %s -o %t9 -D ADDEND=2147483647
77 ## Check how obj2yaml dumps an addend with the value INT32_MIN.
78 # RUN: yaml2obj --docnum=2 %s -o %t10 -D ADDEND=-2147483648
98 Addend: [[ADDEND]]
103 # RUN: yaml2obj --docnum=1 %s -o %t11 -D ADDEND=0
104 # RUN: obj2yaml %t11 | FileCheck %s --implicit-check-not="Addend:"
105 # RUN: yaml2obj --docnum=1 %s -o %t12 -D ADDEND=0x0
106 # RUN: obj2yaml %t12 | FileCheck %s --implicit-check-not="Addend:"