diff options
author | Richard Trieu <rtrieu@google.com> | 2011-09-09 02:16:15 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2011-09-09 02:16:15 +0000 |
commit | b2fc69097d15f6374b9e5e6101f33960c34acbed (patch) | |
tree | 2b4faa672413d9b2ec2cf33aef268b17fac22c15 /lib/Parse/ParseStmt.cpp | |
parent | 8d267c57afb3af418ed5281b7a9bb4555d701a82 (diff) |
Change references to StmtTy to Stmt and removed typedefs of StmtTy. Also removed typedef of AttrTy since it is not used.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139349 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseStmt.cpp')
-rw-r--r-- | lib/Parse/ParseStmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Parse/ParseStmt.cpp b/lib/Parse/ParseStmt.cpp index 5ba6ff9da4..dd5006760b 100644 --- a/lib/Parse/ParseStmt.cpp +++ b/lib/Parse/ParseStmt.cpp @@ -497,7 +497,7 @@ StmtResult Parser::ParseCaseStatement(ParsedAttributes &attrs, bool MissingCase, // DeepestParsedCaseStmt - This is the deepest statement we have parsed, which // gets updated each time a new case is parsed, and whose body is unset so // far. When parsing 'case 4', this is the 'case 3' node. - StmtTy *DeepestParsedCaseStmt = 0; + Stmt *DeepestParsedCaseStmt = 0; // While we have case statements, eat and stack them. SourceLocation ColonLoc; |