Skip to content

Commit 823a597

Browse files
committed
[flang] Workaround build failure.
https://lab.llvm.org/buildbot/#/builders/140/builds/17587 Looks like it is related to some specific version of the build compiler.
1 parent 41cd6d2 commit 823a597

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

flang/lib/Optimizer/Transforms/SetRuntimeCallAttributes.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,9 @@ static constexpr RuntimeFunction runtimeFuncsTable[] = {
202202

203203
static constexpr Fortran::common::StaticMultimapView<RuntimeFunction>
204204
runtimeFuncs(runtimeFuncsTable);
205-
static_assert(runtimeFuncs.Verify() && "map must be sorted");
205+
// FIXME: re-enable after figuring out this failure:
206+
// https://lab.llvm.org/buildbot/#/builders/140/builds/17587
207+
// static_assert(runtimeFuncs.Verify() && "map must be sorted");
206208

207209
// Set attributes for the given Fortran runtime call.
208210
// The symbolTable is used to cache the name lookups in the module.

0 commit comments

Comments
 (0)