stage1: fix build for i386-linux

This commit is contained in:
Andrew Kelley
2020-04-02 19:07:31 -04:00
parent b5526d0b3b
commit e7f555ca55

View File

@@ -52,6 +52,8 @@ struct ZigClangAPValue {
// experimentally-derived size of clang::APValue::DataType
#if defined(_WIN32) && defined(_MSC_VER)
char Data[52];
#elif defined(__i386__)
char Data[48];
#else
char Data[68];
#endif