[ms-inline asm] If we don't know how to handle a token then assume this is not a
simple asm.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162051 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/SemaStmt.cpp b/lib/Sema/SemaStmt.cpp
index 5493e34..4954a4c 100644
--- a/lib/Sema/SemaStmt.cpp
+++ b/lib/Sema/SemaStmt.cpp
@@ -2823,7 +2823,7 @@
     // Check the operand(s).
     switch (AsmToks[i].getKind()) {
     default:
-      //llvm_unreachable("Unknown token.");
+      IsSimple = false;
       break;
     case tok::comma: Asm += ","; break;
     case tok::colon: Asm += ":"; break;