1# Some targets do not have the .size directive. 2# RUN: %clang -target x86_64-unknown-unknown-elf %S/Inputs/symbol-binding.s -c -o %t.o 3# RUN: %lldb %t.o -s %s -o quit | FileCheck %s 4 5image lookup --address 4 6# CHECK: Summary: symbol-binding.test.tmp.o`case1_global 7image lookup --address 5 8# CHECK: Summary: symbol-binding.test.tmp.o`case2_weak 9image lookup --address 6 10# CHECK: Summary: symbol-binding.test.tmp.o`case3_global 11image dump symtab 12# CHECK: Index UserID DSX Type File Address/Value Load Address Size Flags Name 13# CHECK-NEXT:------- ------ --- --------------- ------------------ ------------------ ------------------ ---------- ---------------------------------- 14# CHECK-NEXT:[ 0] 1 Code 0x0000000000000004 0x0000000000000001 0x00000000 case1_local 15# CHECK-NEXT:[ 1] 2 Code 0x0000000000000005 0x0000000000000001 0x00000000 case2_local 16# CHECK-NEXT:[ 2] 3 Code 0x0000000000000003 0x0000000000000001 0x00000000 sizeend 17# CHECK-NEXT:[ 3] 4 Code 0x0000000000000001 0x0000000000000002 0x00000000 sizeful 18# CHECK-NEXT:[ 4] 5 Code 0x0000000000000001 0x0000000000000002 0x00000000 sizeless 19# CHECK-NEXT:[ 5] 6 X Code 0x0000000000000004 0x0000000000000001 0x00000010 case1_global 20# CHECK-NEXT:[ 6] 7 Code 0x0000000000000005 0x0000000000000001 0x00000020 case2_weak 21# CHECK-NEXT:[ 7] 8 X Code 0x0000000000000006 0x0000000000000001 0x00000010 case3_global 22# CHECK-NEXT:[ 8] 9 Code 0x0000000000000006 0x0000000000000001 0x00000020 case3_weak 23