diff options
Diffstat (limited to 'lldb/test/Shell/SymbolFile/Inputs')
-rw-r--r-- | lldb/test/Shell/SymbolFile/Inputs/symbol-binding.s | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lldb/test/Shell/SymbolFile/Inputs/symbol-binding.s b/lldb/test/Shell/SymbolFile/Inputs/symbol-binding.s new file mode 100644 index 00000000000..b7976849241 --- /dev/null +++ b/lldb/test/Shell/SymbolFile/Inputs/symbol-binding.s @@ -0,0 +1,22 @@ + .text + .byte 0 +sizeless: +sizeful: + .byte 0 + .byte 0 +sizeend: + .size sizeful, sizeend - sizeful + .byte 0 +case1_local: +case1_global: + .globl case1_global + .byte 0 +case2_local: +case2_weak: + .weak case2_weak + .byte 0 +case3_weak: + .weak case3_weak +case3_global: + .globl case3_global + .byte 0 |