Skip to content

Commit bca343f

Browse files
committed
RuntimeLibcalls: Remove LLVM_ABI from private member variable declarations
Seeing warnings: llvm/include/llvm/CodeGen/LibcallLoweringInfo.h:15:46: error: 'visibility' attribute ignored [-Werror=attributes] 15 | LLVM_ABI const RTLIB::RuntimeLibcallsInfo &RTLCI; llvm/include/llvm/CodeGen/LibcallLoweringInfo.h:18:25: error: 'visibility' attribute ignored [-Werror=attributes] 18 | RTLIB::Unsupported};
1 parent 7557304 commit bca343f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/include/llvm/CodeGen/LibcallLoweringInfo.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ namespace llvm {
1212

1313
class LibcallLoweringInfo {
1414
private:
15-
LLVM_ABI const RTLIB::RuntimeLibcallsInfo &RTLCI;
15+
const RTLIB::RuntimeLibcallsInfo &RTLCI;
1616
/// Stores the implementation choice for each each libcall.
17-
LLVM_ABI RTLIB::LibcallImpl LibcallImpls[RTLIB::UNKNOWN_LIBCALL + 1] = {
17+
RTLIB::LibcallImpl LibcallImpls[RTLIB::UNKNOWN_LIBCALL + 1] = {
1818
RTLIB::Unsupported};
1919

2020
public:

0 commit comments

Comments
 (0)