http://llvm.org/bugs/show_bug.cgi?id=20664

            Bug ID: 20664
           Summary: comdat lost
           Product: libraries
           Version: trunk
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: normal
          Priority: P
         Component: Linker
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected]
    Classification: Unclassified

$ cat a.ll
$ cat b.ll
$c = comdat any
@a = alias void ()* @f
define internal void @f() comdat $c {
  ret void
}
$ llvm-link a.ll b.ll -o - -S
; ModuleID = 'a.ll'

@a = alias void ()* @f

define internal void @f() {
  ret void
}


Note how @f has lost its comdat.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to