Untabify.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 27 Mar 2014 11:38:28 +0000 (11:38 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 27 Mar 2014 11:38:28 +0000 (11:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204916 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/IR/InstructionsTest.cpp

index 5883e13c385492fe82ed5ec60c6074b2e74f680c..e76afa8a778e103e648c2023f4e169aab0394346 100644 (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());