1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

SmallVector<3> may be used here.

llvm-svn: 204915
This commit is contained in:
NAKAMURA Takumi 2014-03-27 11:33:11 +00:00
parent bdedcfdf65
commit 954a1c921e

View File

@ -65,7 +65,7 @@ protected:
LLVMContext Ctx; LLVMContext Ctx;
std::unique_ptr<Module> M; std::unique_ptr<Module> M;
std::vector<Type *> FArgTypes; SmallVector<Type *, 3> FArgTypes;
Function *F; Function *F;
}; };