mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-04 01:01:37 +00:00
LinkModulesTest.cpp: Reformat.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207537 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d294b68e28
commit
ec96ef30c9
@ -23,9 +23,8 @@ class LinkModuleTest : public testing::Test {
|
||||
protected:
|
||||
virtual void SetUp() {
|
||||
M.reset(new Module("MyModule", Ctx));
|
||||
FunctionType *FTy = FunctionType::get(Type::getInt8PtrTy(Ctx),
|
||||
Type::getInt32Ty(Ctx),
|
||||
false /*=isVarArg*/);
|
||||
FunctionType *FTy = FunctionType::get(
|
||||
Type::getInt8PtrTy(Ctx), Type::getInt32Ty(Ctx), false /*=isVarArg*/);
|
||||
F = Function::Create(FTy, Function::ExternalLinkage, "ba_func", M.get());
|
||||
F->setCallingConv(CallingConv::C);
|
||||
|
||||
@ -37,9 +36,7 @@ protected:
|
||||
ArrayType *AT = ArrayType::get(Type::getInt8PtrTy(Ctx), 3);
|
||||
|
||||
GV = new GlobalVariable(*M.get(), AT, false /*=isConstant*/,
|
||||
GlobalValue::InternalLinkage,
|
||||
0, "switch.bas");
|
||||
|
||||
GlobalValue::InternalLinkage, 0, "switch.bas");
|
||||
|
||||
// Global Initializer
|
||||
std::vector<Constant *> Init;
|
||||
@ -50,16 +47,14 @@ protected:
|
||||
Init.push_back(SwitchCase2BA);
|
||||
|
||||
ConstantInt *One = ConstantInt::get(Type::getInt32Ty(Ctx), 1);
|
||||
Constant *OnePtr = ConstantExpr::getCast(Instruction::IntToPtr,
|
||||
One, Type::getInt8PtrTy(Ctx));
|
||||
Constant *OnePtr = ConstantExpr::getCast(Instruction::IntToPtr, One,
|
||||
Type::getInt8PtrTy(Ctx));
|
||||
Init.push_back(OnePtr);
|
||||
|
||||
GV->setInitializer(ConstantArray::get(AT, Init));
|
||||
}
|
||||
|
||||
virtual void TearDown() {
|
||||
M.reset();
|
||||
}
|
||||
virtual void TearDown() { M.reset(); }
|
||||
|
||||
LLVMContext Ctx;
|
||||
std::unique_ptr<Module> M;
|
||||
@ -129,9 +124,8 @@ TEST_F(LinkModuleTest, BlockAddress) {
|
||||
|
||||
TEST_F(LinkModuleTest, EmptyModule) {
|
||||
Module *InternalM = new Module("InternalModule", Ctx);
|
||||
FunctionType *FTy = FunctionType::get(Type::getVoidTy(Ctx),
|
||||
Type::getInt8PtrTy(Ctx),
|
||||
false /*=isVarArgs*/);
|
||||
FunctionType *FTy = FunctionType::get(
|
||||
Type::getVoidTy(Ctx), Type::getInt8PtrTy(Ctx), false /*=isVarArgs*/);
|
||||
|
||||
F = Function::Create(FTy, Function::InternalLinkage, "bar", InternalM);
|
||||
F->setCallingConv(CallingConv::C);
|
||||
@ -148,7 +142,6 @@ TEST_F(LinkModuleTest, EmptyModule) {
|
||||
|
||||
GV->setInitializer(ConstantStruct::get(STy, F));
|
||||
|
||||
|
||||
Module *EmptyM = new Module("EmptyModule1", Ctx);
|
||||
Linker::LinkModules(EmptyM, InternalM, Linker::PreserveSource, 0);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user