You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
410 B
27 lines
410 B
#include "Utils.h"
|
|
|
|
#include <llvm/Support/Debug.h>
|
|
|
|
#include "BuildInfo.gen.h"
|
|
|
|
#if !defined(NDEBUG) // Debug
|
|
|
|
namespace dev
|
|
{
|
|
namespace evmjit
|
|
{
|
|
|
|
std::ostream& getLogStream(char const* _channel)
|
|
{
|
|
static std::ostream nullStream{nullptr};
|
|
#if LLVM_DEBUG
|
|
return (llvm::DebugFlag && llvm::isCurrentDebugType(_channel)) ? std::cerr : nullStream;
|
|
#else
|
|
return (void)_channel, nullStream;
|
|
#endif
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|