Skip to content

Commit 16ca5b9

Browse files
tautschnigDaniel Kroening
authored and
Daniel Kroening
committed
expr2c: Output the declarator with __int128-typed objects
Unlike all the other cases, this one was missing the declarator.
1 parent d695563 commit 16ca5b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ansi-c/expr2c.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ std::string expr2ct::convert_rec(
312312
{
313313
if(is_signed)
314314
sign_str="";
315-
return q+sign_str+"__int128";
315+
return q + sign_str + "__int128" + d;
316316
}
317317
else
318318
{

0 commit comments

Comments
 (0)