summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-03-27 11:38:28 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-03-27 11:38:28 +0000
commitc112990260027001b82305f9ca50440a5ff469c1 (patch)
tree4271d79ec398a7a27cf348c5f2087283cedf592d /unittests
parent2b8b9031f45e793657cebe93f5d90022d72b7dac (diff)
downloadllvm-c112990260027001b82305f9ca50440a5ff469c1.tar.gz
llvm-c112990260027001b82305f9ca50440a5ff469c1.tar.bz2
llvm-c112990260027001b82305f9ca50440a5ff469c1.tar.xz
Untabify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204916 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/IR/InstructionsTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/unittests/IR/InstructionsTest.cpp b/unittests/IR/InstructionsTest.cpp
index 5883e13c38..e76afa8a77 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());