Lines Matching full:stop
2 // RUN: llvm-objdump -d %t.out --start-address=0x18 --stop-address=0x2f | FileCheck %s
3 // RUN: llvm-objdump -d %t.out --start-address=0xc --stop-address=0x11 | FileCheck %s --check-prefi…
4 // RUN: llvm-objdump -d %t.out --start-address=0x40 --stop-address=0x47 | FileCheck %s --check-pref…
6 // RUN: llvm-objdump -d %t.out --stop-address=0x11 | FileCheck %s --check-prefix STOP
52 // STOP: Disassembly of section .text:
53 // STOP-EMPTY:
54 // STOP-NEXT: 0000000000000000 <foo>:
55 // STOP-NEXT: 0: 55 pushq %rbp
56 // STOP-NEXT: 1: 48 89 e5 movq %rsp, %rbp
57 // STOP-NEXT: 4: 8b 04 25 a8 00 00 00 movl 168, %eax
58 // STOP-NEXT: b: 5d popq %rbp
59 // STOP-NEXT: c: c3 retq
60 // STOP-NEXT: d: 0f 1f 00 nopl (%rax)
61 // STOP-EMPTY:
62 // STOP-NEXT: Disassembly of section .anothertext:
63 // STOP-EMPTY:
64 // STOP-NEXT: 0000000000000010 <main>:
65 // STOP-NEXT: 10: 55 pushq %rbp
66 // STOP-NOT: {{.}}
70 // RUN: not llvm-objdump %t.out --start-address=0x40 --stop-address=0x3f 2>&1 | FileCheck %s --chec…
71 // RUN: not llvm-objdump %t.out --start-address=0x40 --stop-address=0x40 2>&1 | FileCheck %s --chec…
72 // ERRMSG: start address should be less than stop address