We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b12807 commit f544c63Copy full SHA for f544c63
gen/target.cpp
@@ -39,7 +39,8 @@ void Target::_init() {
39
40
cppExceptions = true;
41
42
- c_longsize = global.params.is64bit ? 8 : 4;
+ c_longsize =
43
+ global.params.is64bit && !triple.isWindowsMSVCEnvironment() ? 8 : 4;
44
c_long_doublesize = realsize;
45
classinfosize = 0; // unused
46
maxStaticDataSize = std::numeric_limits<unsigned long long>::max();
0 commit comments