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 3f365d8 commit b31913cCopy full SHA for b31913c
llvm/include/llvm/ADT/IntervalMap.h
@@ -1042,8 +1042,11 @@ class IntervalMap {
1042
1043
public:
1044
explicit IntervalMap(Allocator &a) : height(0), rootSize(0), allocator(a) {
1045
+#if !(defined(__MINGW32__) && defined(_M_IX86))
1046
+ // FIXME: i686-mingw is failing this assertion somehow...
1047
assert((uintptr_t(&data) & (alignof(RootLeaf) - 1)) == 0 &&
1048
"Insufficient alignment");
1049
+#endif
1050
new(&rootLeaf()) RootLeaf();
1051
}
1052
0 commit comments