[LLVMbugs] [Bug 20023] New: Inline asm label names can not be duplicated between functions
    bugzilla-daemon at llvm.org 
    bugzilla-daemon at llvm.org
       
    Thu Jun 12 21:22:57 PDT 2014
    
    
  
http://llvm.org/bugs/show_bug.cgi?id=20023
            Bug ID: 20023
           Summary: Inline asm label names can not be duplicated between
                    functions
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: Frontend
          Assignee: unassignedclangbugs at nondot.org
          Reporter: jmuizelaar at mozilla.com
                CC: llvmbugs at cs.uiuc.edu
    Classification: Unclassified
The following code compiles with cl but not clang-cl
void k()
{
__asm {
 wloop:
  }
}
void j()
{
  __asm {
 wloop:
  }
}
-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20140613/74d71f4d/attachment.html>
    
    
More information about the llvm-bugs
mailing list