Lines Matching refs:make_unique
24 ThreadSafeContext TSCtx(std::make_unique<LLVMContext>()); in TEST()
25 auto M = std::make_unique<Module>("M", *TSCtx.getContext()); in TEST()
32 ThreadSafeContext TSCtx(std::make_unique<LLVMContext>()); in TEST()
34 auto M1 = std::make_unique<Module>("M1", *TSCtx.getContext()); in TEST()
37 auto M2 = std::make_unique<Module>("M2", *TSCtx.getContext()); in TEST()
44 ThreadSafeContext TSCtx(std::make_unique<LLVMContext>()); in TEST()
48 auto M1 = std::make_unique<Module>("M1", *TSCtx.getContext()); in TEST()
53 auto M2 = std::make_unique<Module>("M2", *TSCtx.getContext()); in TEST()
61 ThreadSafeContext TSCtx(std::make_unique<LLVMContext>()); in TEST()
62 auto M = std::make_unique<Module>("M", *TSCtx.getContext()); in TEST()
69 ThreadSafeContext TSCtx(std::make_unique<LLVMContext>()); in TEST()
70 auto M = std::make_unique<Module>("M", *TSCtx.getContext()); in TEST()
87 ThreadSafeContext TSCtx(std::make_unique<LLVMContext>()); in TEST()
90 auto M = std::make_unique<Module>("M", Ctx); in TEST()