diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-02-15 18:23:07 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-15 18:23:07 +0000 |
commit | bb025312f3c309d5da9b1cc6edb19bbde11b25ac (patch) | |
tree | 4b68c8c03ed5e503bddc15465835adf0b01deb7f /clang | |
parent | 46196aef827543e0c4ebd1a2e47e31c19094d66f (diff) | |
download | bcm5719-llvm-bb025312f3c309d5da9b1cc6edb19bbde11b25ac.tar.gz bcm5719-llvm-bb025312f3c309d5da9b1cc6edb19bbde11b25ac.zip |
Fix pasto noticed by Anders Johnsen.
llvm-svn: 64595
Diffstat (limited to 'clang')
-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); } |