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

           Summary: space missing in .ll for invoke
           Product: new-bugs
           Version: unspecified
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: new bugs
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]
                CC: [email protected]


Disassemble bitcode containing invoke and observe the missing spaces:
        invoke [EMAIL PROTECTED]()

Here's a testcase.  Run llvm-as testcase.ll -o - | llvm-dis -o -
to watch the space disappear!

declare void @g()
define void @f() {
        invoke void @g()
                        to label %c unwind label %c
c:
        ret void
}


-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- 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