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 bfbf5d5 commit 7f45ef6Copy full SHA for 7f45ef6
llvm/include/llvm/IR/RuntimeLibcalls.h
@@ -81,10 +81,7 @@ struct RuntimeLibcallsInfo {
81
return LibcallCallingConvs[Call];
82
}
83
84
- iterator_range<const char **> getLibcallNames() {
85
- return llvm::make_range(LibcallRoutineNames,
86
- LibcallRoutineNames + RTLIB::UNKNOWN_LIBCALL);
87
- }
+ ArrayRef<const char *> getLibcallNames() const { return LibcallRoutineNames; }
88
89
private:
90
/// Stores the name each libcall.
0 commit comments