Untabify.

llvm-svn: 204916
This commit is contained in:
NAKAMURA Takumi 2014-03-27 11:38:28 +00:00
parent cce8a58202
commit cb5ebf66df
1 changed files with 3 additions and 3 deletions

View File

@ -55,9 +55,9 @@ TEST(InstructionsTest, ReturnInst) {
class ModuleWithFunctionTest : public testing::Test {
protected:
ModuleWithFunctionTest() : M(new Module("MyModule", Ctx)) {
FArgTypes.push_back(Type::getInt8Ty(Ctx));
FArgTypes.push_back(Type::getInt32Ty(Ctx));
FArgTypes.push_back(Type::getInt64Ty(Ctx));
FArgTypes.push_back(Type::getInt8Ty(Ctx));
FArgTypes.push_back(Type::getInt32Ty(Ctx));
FArgTypes.push_back(Type::getInt64Ty(Ctx));
FunctionType *FTy =
FunctionType::get(Type::getVoidTy(Ctx), FArgTypes, false);
F = Function::Create(FTy, Function::ExternalLinkage, "", M.get());