forked from OSchip/llvm-project
[mlir][DialectConversion] Remove invalid NDEBUG wrapper.
The functions are used, but empty when NDEBUG is set.
This commit is contained in:
parent
6f0229bc71
commit
75c328179e
|
@ -69,7 +69,6 @@ computeConversionSet(iterator_range<Region::iterator> region,
|
|||
return success();
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
/// A utility function to log a successful result for the given reason.
|
||||
template <typename... Args>
|
||||
static void logSuccess(llvm::ScopedPrinter &os, StringRef fmt,
|
||||
|
@ -95,7 +94,6 @@ static void logFailure(llvm::ScopedPrinter &os, StringRef fmt,
|
|||
<< "\n";
|
||||
});
|
||||
}
|
||||
#endif
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Multi-Level Value Mapper
|
||||
|
|
Loading…
Reference in New Issue