diff options
| author | Douglas Gregor <dgregor@apple.com> | 2011-09-02 00:18:52 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2011-09-02 00:18:52 +0000 |
| commit | e8bbc121528b08157bf7457dada4bc87315a2c18 (patch) | |
| tree | 16dae6b0d269ea7c0246e2cba993af6a3ae6a18b /clang/lib/AST/ExprConstant.cpp | |
| parent | 83297dfc7e5a311af23eb686e29bc41d31322a79 (diff) | |
| download | bcm5719-llvm-e8bbc121528b08157bf7457dada4bc87315a2c18.tar.gz bcm5719-llvm-e8bbc121528b08157bf7457dada4bc87315a2c18.zip | |
Extend the ASTContext constructor to delay the initialization of
builtin types (When requested). This is another step toward making
ASTUnit build the ASTContext as needed when loading an AST file,
rather than doing so after the fact. No actual functionality change (yet).
llvm-svn: 138985
Diffstat (limited to 'clang/lib/AST/ExprConstant.cpp')
| -rw-r--r-- | clang/lib/AST/ExprConstant.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/ExprConstant.cpp b/clang/lib/AST/ExprConstant.cpp index 2cd85a104a2..ce7aca9337b 100644 --- a/clang/lib/AST/ExprConstant.cpp +++ b/clang/lib/AST/ExprConstant.cpp @@ -1292,7 +1292,7 @@ bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) { case Builtin::BI__builtin_eh_return_data_regno: { int Operand = E->getArg(0)->EvaluateAsInt(Info.Ctx).getZExtValue(); - Operand = Info.Ctx.Target.getEHDataRegisterNumber(Operand); + Operand = Info.Ctx.getTargetInfo().getEHDataRegisterNumber(Operand); return Success(Operand, E); } |

