We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 599e806 commit 00c26e8Copy full SHA for 00c26e8
llvm/include/llvm/Support/ModRef.h
@@ -337,13 +337,6 @@ class CaptureInfo {
337
/// Create CaptureInfo that may capture all components of the pointer.
338
static CaptureInfo all() { return CaptureInfo(CaptureComponents::All); }
339
340
- /// Create CaptureInfo that may only capture through means other than the
341
- /// return value.
342
- static CaptureInfo
343
- otherOnly(CaptureComponents OtherComponents = CaptureComponents::All) {
344
- return CaptureInfo(OtherComponents, CaptureComponents::None);
345
- }
346
-
347
/// Create CaptureInfo that may only capture via the return value.
348
static CaptureInfo
349
retOnly(CaptureComponents RetComponents = CaptureComponents::All) {
0 commit comments