Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions llvm/include/llvm/CodeGen/LibcallLoweringInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ namespace llvm {

class LibcallLoweringInfo {
private:
LLVM_ABI const RTLIB::RuntimeLibcallsInfo &RTLCI;
const RTLIB::RuntimeLibcallsInfo &RTLCI;
/// Stores the implementation choice for each each libcall.
LLVM_ABI RTLIB::LibcallImpl LibcallImpls[RTLIB::UNKNOWN_LIBCALL + 1] = {
RTLIB::LibcallImpl LibcallImpls[RTLIB::UNKNOWN_LIBCALL + 1] = {
RTLIB::Unsupported};

public:
Expand Down