git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40798 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-08-04 00:14:36 +00:00
Родитель 608e0ee4b4
Коммит c1b607db38
1 изменённых файлов: 8 добавлений и 4 удалений

Просмотреть файл

@ -791,10 +791,14 @@ public:
: Expr(ChooseExprClass, t),
Cond(cond), LHS(lhs), RHS(rhs), BuiltinLoc(BLoc), RParenLoc(RP) {}
Expr *getCond() const { return Cond; }
Expr *getLHS() const { return LHS; }
Expr *getRHS() const { return RHS; }
Expr *getCond() { return Cond; }
Expr *getLHS() { return LHS; }
Expr *getRHS() { return RHS; }
const Expr *getCond() const { return Cond; }
const Expr *getLHS() const { return LHS; }
const Expr *getRHS() const { return RHS; }
virtual SourceRange getSourceRange() const {
return SourceRange(BuiltinLoc, RParenLoc);
}