reference, declaration → definition 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=arm64-none-linux-gnu -filetype=obj -o %t %s # RUN: llvm-rtdyld -triple=arm64-none-linux-gnu -verify -check=%s %t .globl _main .weak _label1 .section .text.1,"ax" _label1: nop _main: b _label1 ## Branch 1 instruction back from _main # rtdyld-check: *{4}(_main) = 0x17ffffff |