[llvm] r204916 - Untabify.

NAKAMURA Takumi geek4civic at gmail.com
Thu Mar 27 04:38:28 PDT 2014


Author: chapuni
Date: Thu Mar 27 06:38:28 2014
New Revision: 204916

URL: http://llvm.org/viewvc/llvm-project?rev=204916&view=rev
Log:
Untabify.

Modified:
    llvm/trunk/unittests/IR/InstructionsTest.cpp

Modified: llvm/trunk/unittests/IR/InstructionsTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/IR/InstructionsTest.cpp?rev=204916&r1=204915&r2=204916&view=diff
==============================================================================
--- llvm/trunk/unittests/IR/InstructionsTest.cpp (original)
+++ llvm/trunk/unittests/IR/InstructionsTest.cpp Thu Mar 27 06:38:28 2014
@@ -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());





More information about the llvm-commits mailing list