summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-03-27 11:33:11 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-03-27 11:33:11 +0000
commit2b8b9031f45e793657cebe93f5d90022d72b7dac (patch)
treef997d17bdc3875384516698c885f925f14adc869 /unittests
parentda56c397583850d3dab029d2e8fd323cb10f1443 (diff)
downloadllvm-2b8b9031f45e793657cebe93f5d90022d72b7dac.tar.gz
llvm-2b8b9031f45e793657cebe93f5d90022d72b7dac.tar.bz2
llvm-2b8b9031f45e793657cebe93f5d90022d72b7dac.tar.xz
SmallVector<3> may be used here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204915 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/IR/InstructionsTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/IR/InstructionsTest.cpp b/unittests/IR/InstructionsTest.cpp
index e04006508b..5883e13c38 100644
--- a/unittests/IR/InstructionsTest.cpp
+++ b/unittests/IR/InstructionsTest.cpp
@@ -65,7 +65,7 @@ protected:
LLVMContext Ctx;
std::unique_ptr<Module> M;
- std::vector<Type *> FArgTypes;
+ SmallVector<Type *, 3> FArgTypes;
Function *F;
};