Skip to content

Commit 92e0040

Browse files
committed
Fix architecture typo x64_64 -> x86_64
x64_64 does not seem to be a valid architecture, and likely is just a typo for what should be x86_64.
1 parent 7856f2e commit 92e0040

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -993,7 +993,7 @@ bool configt::set(const cmdlinet &cmdline)
993993

994994
// long double is the same as double in Visual Studio,
995995
// but it's 16 bytes with GCC with the 64-bit target.
996-
if(arch=="x64_64" && cmdline.isset("gcc"))
996+
if(arch == "x86_64" && cmdline.isset("gcc"))
997997
ansi_c.long_double_width=16*8;
998998
else
999999
ansi_c.long_double_width=8*8;

0 commit comments

Comments
 (0)