Skip to content

Commit 2c0e4e7

Browse files
authored
RuntimeLibcalls: Remove LLVM_ABI from private member variable declarations (#166776)
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 3ad5765 commit 2c0e4e7

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
@@ -15,9 +15,9 @@ namespace llvm {
1515

1616
class LibcallLoweringInfo {
1717
private:
18-
LLVM_ABI const RTLIB::RuntimeLibcallsInfo &RTLCI;
18+
const RTLIB::RuntimeLibcallsInfo &RTLCI;
1919
/// Stores the implementation choice for each each libcall.
20-
LLVM_ABI RTLIB::LibcallImpl LibcallImpls[RTLIB::UNKNOWN_LIBCALL + 1] = {
20+
RTLIB::LibcallImpl LibcallImpls[RTLIB::UNKNOWN_LIBCALL + 1] = {
2121
RTLIB::Unsupported};
2222

2323
public:

0 commit comments

Comments
 (0)