aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/IR/InstructionsTest.cpp
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
commitcb5ebf66dfad2e0b038a3b4b10ffc084aa68cabc (patch)
tree6dd5a97ea6c38201481c0c69f38c061c9a4aca74 /llvm/unittests/IR/InstructionsTest.cpp
parentcce8a58202687bd8acfa5cf7091ffd7cf168e98c (diff)
downloadllvm-cb5ebf66dfad2e0b038a3b4b10ffc084aa68cabc.zip
llvm-cb5ebf66dfad2e0b038a3b4b10ffc084aa68cabc.tar.gz
llvm-cb5ebf66dfad2e0b038a3b4b10ffc084aa68cabc.tar.bz2
Untabify.
llvm-svn: 204916
Diffstat (limited to 'llvm/unittests/IR/InstructionsTest.cpp')
-rw-r--r--llvm/unittests/IR/InstructionsTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/unittests/IR/InstructionsTest.cpp b/llvm/unittests/IR/InstructionsTest.cpp
index 5883e13..e76afa8 100644
--- a/llvm/unittests/IR/InstructionsTest.cpp
+++ b/llvm/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());