Untabify.
[oota-llvm.git] / 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());