From c112990260027001b82305f9ca50440a5ff469c1 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Thu, 27 Mar 2014 11:38:28 +0000 Subject: [PATCH] Untabify. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204916 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/IR/InstructionsTest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/unittests/IR/InstructionsTest.cpp b/unittests/IR/InstructionsTest.cpp index 5883e13c385..e76afa8a778 100644 --- a/unittests/IR/InstructionsTest.cpp +++ b/unittests/IR/InstructionsTest.cpp @@ -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());