]> granicus.if.org Git - clang/commitdiff
Remove data member MSAsmStmt::AsmLoc, wrongly hiding AsmStmt::AsmLoc.
authorEnea Zaffanella <zaffanella@cs.unipr.it>
Sat, 23 Feb 2013 12:27:19 +0000 (12:27 +0000)
committerEnea Zaffanella <zaffanella@cs.unipr.it>
Sat, 23 Feb 2013 12:27:19 +0000 (12:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175963 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Stmt.h

index 477e554d5fe6a776ca2fd96724199c8c3917a50e..cf8fc249c590d7cc66387e4c4d538c4c6b604d1a 100644 (file)
@@ -1673,7 +1673,7 @@ public:
 /// This represents a Microsoft inline-assembly statement extension.
 ///
 class MSAsmStmt : public AsmStmt {
-  SourceLocation AsmLoc, LBraceLoc, EndLoc;
+  SourceLocation LBraceLoc, EndLoc;
   std::string AsmStr;
 
   unsigned NumAsmToks;