diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-26 22:13:22 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-26 22:13:22 +0000 |
commit | 1ea86df7ddb44659fbf694934abb2177beed8637 (patch) | |
tree | bc547f4126e123f1bc04ed9acf4ae8b095c9776b /test/MC | |
parent | b003759e247f0edb3b691849598ba252f51ae624 (diff) | |
download | external_llvm-1ea86df7ddb44659fbf694934abb2177beed8637.zip external_llvm-1ea86df7ddb44659fbf694934abb2177beed8637.tar.gz external_llvm-1ea86df7ddb44659fbf694934abb2177beed8637.tar.bz2 |
llvm-mc/Mach-O: Don't put assembler temporary labels in the symbol table.
- I moved section creation back into AsmParser. I think policy decisions like
this should be pushed higher, not lower, when possible (in addition the
assembler has flags which change this behavior, for example).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80162 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC')
-rw-r--r-- | test/MC/MachO/symbols-1.s | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/MC/MachO/symbols-1.s b/test/MC/MachO/symbols-1.s index 2cf1311..4c72fb3 100644 --- a/test/MC/MachO/symbols-1.s +++ b/test/MC/MachO/symbols-1.s @@ -13,8 +13,9 @@ sym_local_C: sym_globl_def_A: sym_globl_def_B: sym_globl_def_C: +Lsym_asm_temp: .long 0 - + // CHECK: ('cputype', 7) // CHECK: ('cpusubtype', 3) // CHECK: ('filetype', 1) |