[llvm] RuntimeLibcalls: Remove LibcallLoweringPredicate from RuntimeLibcallImpl (PR #166585)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 5 08:37:15 PST 2025
https://github.com/arsenm created https://github.com/llvm/llvm-project/pull/166585
This is unused and will not make sense.
>From affdea0d1c20f65af27a808af3b5fbb53405d732 Mon Sep 17 00:00:00 2001
From: Matt Arsenault <Matthew.Arsenault at amd.com>
Date: Tue, 14 Oct 2025 06:42:45 +0900
Subject: [PATCH] RuntimeLibcalls: Remove LibcallLoweringPredicate from
RuntimeLibcallImpl
This is unused and will not make sense.
---
llvm/include/llvm/IR/RuntimeLibcallsImpl.td | 1 -
1 file changed, 1 deletion(-)
diff --git a/llvm/include/llvm/IR/RuntimeLibcallsImpl.td b/llvm/include/llvm/IR/RuntimeLibcallsImpl.td
index b5752c1b69ad8..92853125379f5 100644
--- a/llvm/include/llvm/IR/RuntimeLibcallsImpl.td
+++ b/llvm/include/llvm/IR/RuntimeLibcallsImpl.td
@@ -61,7 +61,6 @@ class RuntimeLibcall {
class RuntimeLibcallImpl<RuntimeLibcall P, string Name = NAME> {
RuntimeLibcall Provides = P;
string LibCallFuncName = Name;
- list<LibcallLoweringPredicate> LoweringPredicates;
bit IsDefault = false;
}
More information about the llvm-commits
mailing list