aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaStmt.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-08-09 21:28:05 +0000
committerChad Rosier <mcrosier@apple.com>2012-08-09 21:28:05 +0000
commit613f44418b55c39c1d3f30c5e8f52f3e3248384c (patch)
tree00d2d055f5cc0a19ca5b117c8c89f076c1e4133d /lib/Sema/SemaStmt.cpp
parent2c5f8d79ed128892fa548a3308a938a3a53fbb5e (diff)
[ms-inline asm] Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161622 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaStmt.cpp')
-rw-r--r--lib/Sema/SemaStmt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaStmt.cpp b/lib/Sema/SemaStmt.cpp
index 944fc40aad..1a85bd8b3e 100644
--- a/lib/Sema/SemaStmt.cpp
+++ b/lib/Sema/SemaStmt.cpp
@@ -2935,7 +2935,7 @@ StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc,
OwningPtr<llvm::MCTargetAsmParser>
TargetParser(TheTarget->createMCAsmParser(*STI, *Parser));
- // Change to the Intel syntax.
+ // Change to the Intel dialect.
Parser->setAssemblerDialect(1);
Parser->setTargetParser(*TargetParser.get());