Index: clang/lib/AST/Interp/InterpBuiltin.cpp =================================================================== --- clang/lib/AST/Interp/InterpBuiltin.cpp +++ clang/lib/AST/Interp/InterpBuiltin.cpp @@ -116,6 +116,15 @@ return true; } +static bool interp__builtin_inf(InterpState &S, CodePtr OpPC, + const InterpFrame *Frame, const Function *F) { + const llvm::fltSemantics &TargetSemantics = + S.getCtx().getFloatTypeSemantics(F->getDecl()->getReturnType()); + + S.Stk.push(Floating::getInf(TargetSemantics)); + return true; +} + bool InterpretBuiltin(InterpState &S, CodePtr OpPC, const Function *F) { InterpFrame *Frame = S.Current; APValue Dummy; @@ -146,6 +155,14 @@ if (interp__builtin_nan(S, OpPC, Frame, F, /*Signaling=*/true)) return Ret(S, OpPC, Dummy); break; + case Builtin::BI__builtin_inf: + case Builtin::BI__builtin_inff: + case Builtin::BI__builtin_infl: + case Builtin::BI__builtin_inff16: + case Builtin::BI__builtin_inff128: + if (interp__builtin_inf(S, OpPC, Frame, F)) + return Ret(S, OpPC, Dummy); + break; default: return false;