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)
llvm-svn: 175963

clang/include/clang/AST/Stmt.h

index 477e554..cf8fc24 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;