mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
Add an explicit keyword.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78675 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7f4151bc69
commit
b2d746ce6d
@ -48,7 +48,9 @@ public:
|
||||
IRBuilder(LLVMContext &C, const T& F) :
|
||||
Context(C), Folder(F) { ClearInsertionPoint(); }
|
||||
|
||||
IRBuilder(LLVMContext &C) : Context(C), Folder(C) { ClearInsertionPoint(); }
|
||||
explicit IRBuilder(LLVMContext &C) : Context(C), Folder(C) {
|
||||
ClearInsertionPoint();
|
||||
}
|
||||
|
||||
explicit IRBuilder(BasicBlock *TheBB, const T& F)
|
||||
: Context(TheBB->getContext()), Folder(F) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user