================ @@ -0,0 +1,52 @@ +//===----------- LLJITTest.cpp - Unit tests for LLJIT ---------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#include "llvm/ExecutionEngine/Orc/LLJIT.h" +#include "OrcTestCommon.h" +#include "llvm/IR/Module.h" +#include "llvm/Testing/Support/Error.h" +#include "gtest/gtest.h" + +using namespace llvm; +using namespace llvm::orc; + +namespace { + +TEST(LLJITTest, AddModuleWithIncompatibleTripleErrors) { ---------------- lhames wrote:
I think this test is dead once the error above is removed. https://github.com/llvm/llvm-project/pull/216132 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
