aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Parse/Action.h
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2009-11-23 19:51:43 +0000
committerFariborz Jahanian <fjahanian@apple.com>2009-11-23 19:51:43 +0000
commita79f8b3989558884d9dbbbdbd4da861117345865 (patch)
tree8f349ad2b1d7bb40bbcc00e6a25702d1c5a230d1 /include/clang/Parse/Action.h
parentc6e11fff7623e07681a29c103fcf0bb5c5b39140 (diff)
Fix a recent regression probably caused by addition of altivec-style
type-casts in the parser. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89691 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r--include/clang/Parse/Action.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h
index abe50d05bc..de5a82f071 100644
--- a/include/clang/Parse/Action.h
+++ b/include/clang/Parse/Action.h
@@ -1048,6 +1048,10 @@ public:
return ExprEmpty();
}
+ virtual bool TypeIsVectorType(TypeTy *Ty) {
+ return false;
+ }
+
virtual OwningExprResult ActOnBinOp(Scope *S, SourceLocation TokLoc,
tok::TokenKind Kind,
ExprArg LHS, ExprArg RHS) {