1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Run clang-format on file.

llvm-svn: 194219
This commit is contained in:
Bill Wendling 2013-11-07 20:18:21 +00:00
parent 1824ef73c8
commit 62b2b2d29b

View File

@ -24,9 +24,8 @@ protected:
virtual void SetUp() {
LLVMContext &Ctx = getGlobalContext();
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);
@ -38,9 +37,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;
@ -51,16 +48,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(); }
OwningPtr<Module> M;
Function *F;