]> granicus.if.org Git - clang/commit
[ms-inline asm] Don't diagnose an empty lookup for inline assmebly. This happen
authorChad Rosier <mcrosier@apple.com>
Fri, 24 May 2013 18:32:55 +0000 (18:32 +0000)
committerChad Rosier <mcrosier@apple.com>
Fri, 24 May 2013 18:32:55 +0000 (18:32 +0000)
commit942dfe2e4d75f9d7c6f2e73eadac6fa659a5f853
tree9531c3d3389d9dc0cc4d117fcef572dd9cd83e18
parent6fb46b02599493d16e5130eff61050c72f65f89e
[ms-inline asm] Don't diagnose an empty lookup for inline assmebly.  This happen
for labels in inline assembly that aren't in the lookup tables.  E.g.,

  __asm {
   a:
   jmp a
  }

rdar://13983623

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182659 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/Sema/Sema.h
lib/Sema/SemaExpr.cpp
lib/Sema/SemaStmtAsm.cpp
test/CodeGen/ms-inline-asm.cpp