diff options
author | Chad Rosier <mcrosier@apple.com> | 2013-01-22 18:18:22 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2013-01-22 18:18:22 +0000 |
commit | c666cf404d37d6624a4efdf06cc2f9f1995cfe9c (patch) | |
tree | c11203d3e455ac3dd2e36ad32d95fc4b79aaaf8a /lib/Parse/ParseStmt.cpp | |
parent | e0d2066ab8812cbaa16d79af5f2c9fb6bd52d2e2 (diff) |
[ms-inline asm] Remove a warning about ms-style inline assembly not being
supported.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173177 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseStmt.cpp')
-rw-r--r-- | lib/Parse/ParseStmt.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Parse/ParseStmt.cpp b/lib/Parse/ParseStmt.cpp index 87c1d46f6c..c4c558c346 100644 --- a/lib/Parse/ParseStmt.cpp +++ b/lib/Parse/ParseStmt.cpp @@ -1679,9 +1679,6 @@ StmtResult Parser::ParseReturnStatement() { /// ms-asm-line '\n' ms-asm-instruction-block /// StmtResult Parser::ParseMicrosoftAsmStatement(SourceLocation AsmLoc) { - // MS-style inline assembly is not fully supported, so emit a warning. - Diag(AsmLoc, diag::warn_unsupported_msasm); - SourceManager &SrcMgr = PP.getSourceManager(); SourceLocation EndLoc = AsmLoc; SmallVector<Token, 4> AsmToks; |