summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaChecking.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-09-02 00:18:52 +0000
committerDouglas Gregor <dgregor@apple.com>2011-09-02 00:18:52 +0000
commite8bbc121528b08157bf7457dada4bc87315a2c18 (patch)
tree16dae6b0d269ea7c0246e2cba993af6a3ae6a18b /clang/lib/Sema/SemaChecking.cpp
parent83297dfc7e5a311af23eb686e29bc41d31322a79 (diff)
downloadbcm5719-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/Sema/SemaChecking.cpp')
-rw-r--r--clang/lib/Sema/SemaChecking.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp
index 30c247f9873..f5dec069ccf 100644
--- a/clang/lib/Sema/SemaChecking.cpp
+++ b/clang/lib/Sema/SemaChecking.cpp
@@ -189,7 +189,7 @@ Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
// Since the target specific builtins for each arch overlap, only check those
// of the arch we are compiling for.
if (BuiltinID >= Builtin::FirstTSBuiltin) {
- switch (Context.Target.getTriple().getArch()) {
+ switch (Context.getTargetInfo().getTriple().getArch()) {
case llvm::Triple::arm:
case llvm::Triple::thumb:
if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
OpenPOWER on IntegriCloud