Skip to content

Commit 89ce580

Browse files
committed
update
1 parent a1dc8cb commit 89ce580

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/smack/Prelude.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1591,8 +1591,8 @@ void FpOpGen::generateConvOps(std::stringstream &s) const {
15911591
auto exp = FP_LAYOUT.at(bw).first;
15921592
auto sig = FP_LAYOUT.at(bw).second;
15931593
std::string type = getFpTypeName(bw);
1594-
s << uninterpretedOp("$fpext", {type, "float"}, makeFpVars(1, 0), name) << "\n";
1595-
s << uninterpretedOp("$fptrunc", {type, "float"}, makeFpVars(1, 0), name) << "\n";
1594+
s << uninterpretedOp("$fpext", {type, "float"}, makeFpVars(1, 0), "float") << "\n";
1595+
s << uninterpretedOp("$fptrunc", {type, "float"}, makeFpVars(1, 0), "float") << "\n";
15961596
s << uninterpretedOp("$fpext", {"float", type}, makeFpVars(1, 0), type) << "\n";
15971597
s << uninterpretedOp("$fptrunc", {"float", type}, makeFpVars(1, 0), type) << "\n";
15981598
}

0 commit comments

Comments
 (0)