blob: a02b8b19ebe3c6661caff64d8d71e96ad2c780b6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump | FileCheck %s
// Test that this produces an undefined reference to .Lfoo
je .Lfoo
// CHECK: ('_symbols', [
// CHECK: (('st_name', 0x1) # '.Lfoo'
// CHECK-NEXT: ('st_bind', 0x1)
// CHECK: (('sh_name', 0x24) # '.strtab'
|