https://bugs.llvm.org/show_bug.cgi?id=41353

            Bug ID: 41353
           Summary: unique symbols printed as D instead of u
           Product: tools
           Version: trunk
          Hardware: PC
                OS: Linux
            Status: NEW
          Keywords: beginner
          Severity: enhancement
          Priority: P
         Component: llvm-nm
          Assignee: unassignedb...@nondot.org
          Reporter: ruppre...@google.com
                CC: gri...@accesssoftek.com, llvm-bugs@lists.llvm.org

llvm-nm should print 'u' for unique symbols:

$ cat /tmp/unique.s
        .data
        .type foo,%gnu_unique_object
foo:
        .byte 0
$ clang -c /tmp/unique.s -o /tmp/unique.o
$ nm /tmp/unique.o
0000000000000000 u foo
$ llvm-nm /tmp/unique.o
0000000000000000 D foo

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to