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: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    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.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to