Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 01c44b0

Browse files
author
Daniel Kroening
authoredJan 9, 2017
Merge pull request #410 from vladrich/patch-1
Wrong definition of __uint128_t
2 parents e56fb21 + 17498ce commit 01c44b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/ansi-c/ansi_c_internal_additions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ void ansi_c_internal_additions(std::string &code)
281281
if(config.ansi_c.long_int_width>=64)
282282
{
283283
code+="typedef signed __int128 __int128_t;\n"
284-
"typedef signed __int128 __uint128_t;\n";
284+
"typedef unsigned __int128 __uint128_t;\n";
285285
}
286286
}
287287

0 commit comments

Comments
 (0)
Please sign in to comment.