mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-14 23:10:54 +00:00
[MLIR][Presburger] Silence warnings in GCC (NFC)
Reviewed By: arjunp Differential Revision: https://reviews.llvm.org/D121205
This commit is contained in:
parent
f0e3972f08
commit
f3e1dcc5df
@ -81,10 +81,12 @@ static void checkSample(bool hasSample, const IntegerPolyhedron &poly,
|
||||
EXPECT_TRUE(poly.containsPoint(*maybeSample));
|
||||
|
||||
ASSERT_FALSE(maybeLexMin.isEmpty());
|
||||
if (maybeLexMin.isUnbounded())
|
||||
if (maybeLexMin.isUnbounded()) {
|
||||
EXPECT_TRUE(Simplex(poly).isUnbounded());
|
||||
if (maybeLexMin.isBounded())
|
||||
}
|
||||
if (maybeLexMin.isBounded()) {
|
||||
EXPECT_TRUE(poly.containsPoint(*maybeLexMin));
|
||||
}
|
||||
}
|
||||
break;
|
||||
case TestFunction::Empty:
|
||||
|
Loading…
x
Reference in New Issue
Block a user