blob: 271e5a042e05089a2c61e7023fb8a3c20e343589 [file] [log] [blame]
//===- llvm/tools/gollvm/unittests/BackendCore/BackendCoreTests.cpp -----===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "TestUtils.h"
#include "gtest/gtest.h"
#include "go-llvm-backend.h"
using namespace llvm;
namespace {
TEST(ParserTests, ParseFile) {
LLVMContext C;
std::unique_ptr<Backend> makeit(go_get_backend(C));
}
}