diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2025-06-27 17:37:03 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-27 17:37:03 +0900 |
commit | 3fdf46ad60f1747e8ea1cced2e67dd36f29fc43b (patch) | |
tree | fd1ac80af279e7e4b9179a7bf80cbbc13b9233e4 /llvm/lib/Object/IRSymtab.cpp | |
parent | d163ab3323495560eb0255ac807da2bf24d3c629 (diff) | |
download | llvm-3fdf46ad60f1747e8ea1cced2e67dd36f29fc43b.zip llvm-3fdf46ad60f1747e8ea1cced2e67dd36f29fc43b.tar.gz llvm-3fdf46ad60f1747e8ea1cced2e67dd36f29fc43b.tar.bz2 |
TableGen: Add runtime libcall backend (#144972)
Replace RuntimeLibcalls.def with a tablegenerated version. This
is in preparation for splitting RuntimeLibcalls into two components.
For now match the existing functionality.
Diffstat (limited to 'llvm/lib/Object/IRSymtab.cpp')
-rw-r--r-- | llvm/lib/Object/IRSymtab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Object/IRSymtab.cpp b/llvm/lib/Object/IRSymtab.cpp index 494ec08..2f25c77 100644 --- a/llvm/lib/Object/IRSymtab.cpp +++ b/llvm/lib/Object/IRSymtab.cpp @@ -48,7 +48,7 @@ static cl::opt<bool> DisableBitcodeVersionUpgrade( static const char *PreservedSymbols[] = { // There are global variables, so put it here instead of in - // RuntimeLibcalls.def. + // RuntimeLibcalls.td. // TODO: Are there similar such variables? "__ssp_canary_word", "__stack_chk_guard", |