diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-09-11 23:48:00 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-09-11 23:48:00 +0000 |
commit | 8742d7c84a45988b9d6e1f6ad38b2242b800c2bd (patch) | |
tree | cfdda4386b0238bfd53a364a061fd20a3359a689 /lib/Sema/SemaStmtAsm.cpp | |
parent | fb700265b6e452a3cfd3abc73102fef11d103d4a (diff) |
[ms-inline asm] As of r163657 this check is unnecessary.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163665 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaStmtAsm.cpp')
-rw-r--r-- | lib/Sema/SemaStmtAsm.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Sema/SemaStmtAsm.cpp b/lib/Sema/SemaStmtAsm.cpp index 1a7d917c15..2d20d6afcc 100644 --- a/lib/Sema/SemaStmtAsm.cpp +++ b/lib/Sema/SemaStmtAsm.cpp @@ -595,11 +595,6 @@ StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, } const llvm::MCOperand &Op = Inst.getOperand(MCIdx); - - // Immediate. - if (Op.isImm() || Op.isFPImm()) - continue; - bool isDef = NumDefs && (MCIdx < NumDefs); // Register/Clobber. |