It is reasonably common to want to clone some call with different bundles.
Let's actually provide an interface to do that.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/include/llvm/IR/InstrTypes.h | ||
---|---|---|
1145 | No call sites make use of this default value (nullptr). Is it the right value? I'm not sure if you can default it to CB, but if not, should it just be a required parameter with no default value? |
llvm/include/llvm/IR/InstrTypes.h | ||
---|---|---|
1145 | This is a direct wrapper over all the subclasses Create() function with the same signature. |
llvm/include/llvm/IR/InstrTypes.h | ||
---|---|---|
1145 | Ah, I missed the use in the child patch. |
llvm/include/llvm/IR/InstrTypes.h | ||
---|---|---|
1145 | Hm, that use wasn't supposed to be there. |
No call sites make use of this default value (nullptr). Is it the right value? I'm not sure if you can default it to CB, but if not, should it just be a required parameter with no default value?