r175963 - Remove data member MSAsmStmt::AsmLoc, wrongly hiding AsmStmt::AsmLoc.

Enea Zaffanella zaffanella at cs.unipr.it
Sat Feb 23 04:27:19 PST 2013


Author: enea
Date: Sat Feb 23 06:27:19 2013
New Revision: 175963

URL: http://llvm.org/viewvc/llvm-project?rev=175963&view=rev
Log:
Remove data member MSAsmStmt::AsmLoc, wrongly hiding AsmStmt::AsmLoc.

Modified:
    cfe/trunk/include/clang/AST/Stmt.h

Modified: cfe/trunk/include/clang/AST/Stmt.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Stmt.h?rev=175963&r1=175962&r2=175963&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Stmt.h (original)
+++ cfe/trunk/include/clang/AST/Stmt.h Sat Feb 23 06:27:19 2013
@@ -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;





More information about the cfe-commits mailing list