diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-03-27 11:33:11 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-03-27 11:33:11 +0000 |
| commit | cce8a58202687bd8acfa5cf7091ffd7cf168e98c (patch) | |
| tree | 9c6fa059b088baab031c0b6e2e4b85dc774e0b09 | |
| parent | be8556d17ab05968846eed2970d19d276ab8255d (diff) | |
| download | bcm5719-llvm-cce8a58202687bd8acfa5cf7091ffd7cf168e98c.tar.gz bcm5719-llvm-cce8a58202687bd8acfa5cf7091ffd7cf168e98c.zip | |
SmallVector<3> may be used here.
llvm-svn: 204915
| -rw-r--r-- | llvm/unittests/IR/InstructionsTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/IR/InstructionsTest.cpp b/llvm/unittests/IR/InstructionsTest.cpp index e04006508bd..5883e13c385 100644 --- a/llvm/unittests/IR/InstructionsTest.cpp +++ b/llvm/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; }; |

