1 /* This file is part of the dynarmic project.
2  * Copyright (c) 2018 MerryMage
3  * SPDX-License-Identifier: 0BSD
4  */
5 
6 #pragma once
7 
8 namespace Dynarmic::FP {
9 
10 struct FPUnpacked;
11 
12 /// This function assumes all arguments have been normalized.
13 FPUnpacked FusedMulAdd(FPUnpacked addend, FPUnpacked op1, FPUnpacked op2);
14 
15 } // namespace Dynarmic::FP
16