File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -137,12 +137,13 @@ bool Builtin::Context::isBuiltinFunc(llvm::StringRef FuncName) {
137137 return false ;
138138}
139139
140- static bool isSymbolAvailableInC89 (const llvm::StringTable& Strings, const Builtin::Info & BuiltinInfo) {
140+ static bool isSymbolAvailableInC89 (const llvm::StringTable &Strings,
141+ const Builtin::Info &BuiltinInfo) {
141142
142143 auto NameStr = Strings[BuiltinInfo.Offsets .Name ];
143144
144145 // FIXME: add other C89 symbols here
145- if (NameStr == " log" ) {
146+ if (NameStr == " log" ) {
146147 return true ;
147148 }
148149
@@ -166,8 +167,7 @@ static bool builtinIsSupported(const llvm::StringTable &Strings,
166167 return false ;
167168 }
168169 /* MathBuiltins Unsupported */
169- if (LangOpts.NoMathBuiltin &&
170- BuiltinInfo.Header .ID == HeaderDesc::MATH_H)
170+ if (LangOpts.NoMathBuiltin && BuiltinInfo.Header .ID == HeaderDesc::MATH_H)
171171 return false ;
172172 /* GnuMode Unsupported */
173173 if (!LangOpts.GNUMode && (BuiltinInfo.Langs & GNU_LANG))
You can’t perform that action at this time.
0 commit comments