Author: lattner
Date: Mon Jan  4 19:23:25 2010
New Revision: 92559

URL: http://llvm.org/viewvc/llvm-project?rev=92559&view=rev
Log:
fix a bug mike noticed.

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=92559&r1=92558&r2=92559&view=diff

==============================================================================
--- cfe/trunk/include/clang/AST/Stmt.h (original)
+++ cfe/trunk/include/clang/AST/Stmt.h Mon Jan  4 19:23:25 2010
@@ -1144,7 +1144,7 @@
   bool isVolatile() const { return IsVolatile; }
   void setVolatile(bool V) { IsVolatile = V; }
   bool isSimple() const { return IsSimple; }
-  void setSimple(bool V) { IsSimple = false; }
+  void setSimple(bool V) { IsSimple = V; }
   bool isMSAsm() const { return MSAsm; }
   void setMSAsm(bool V) { MSAsm = V; }
 


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to