diff options
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/AST/Builtins.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/AST/Builtins.cpp b/clang/lib/AST/Builtins.cpp index cf2954de2f6..4a8a338e637 100644 --- a/clang/lib/AST/Builtins.cpp +++ b/clang/lib/AST/Builtins.cpp @@ -52,8 +52,8 @@ void Builtin::Context::InitializeBuiltins(IdentifierTable &Table, for (unsigned i = 0, e = NumTSRecords; i != e; ++i) if (!TSRecords[i].Suppressed && (!Freestanding || - (BuiltinInfo[i].Attributes && - !strchr(BuiltinInfo[i].Attributes, 'f')))) + (TSRecords[i].Attributes && + !strchr(TSRecords[i].Attributes, 'f')))) Table.get(TSRecords[i].Name).setBuiltinID(i+Builtin::FirstTSBuiltin); } |