#include "mlir/Bytecode/BytecodeReader.h"
#include "mlir/Bytecode/BytecodeWriter.h"
#include "mlir/IR/AsmState.h"
#include "mlir/IR/BuiltinAttributes.h"
#include "mlir/IR/OpImplementation.h"
#include "mlir/IR/OwningOpRef.h"
#include "mlir/Parser/Parser.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/Endian.h"
#include "llvm/Support/MemoryBufferRef.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"
usingnamespacellvm;
usingnamespacemlir;
StringLiteral irWithResources = …;
TEST(Bytecode, MultiModuleWithResource) { … }
namespace {
class OpWithoutProperties : public Op<OpWithoutProperties> { … };
class TestOpPropertiesDialect : public Dialect { … };
}
constexpr StringLiteral withoutPropertiesAttrsSrc = …;
TEST(Bytecode, OpWithoutProperties) { … }