From 0fa3061c4e1468f8ab8fbb06ef0d19c00df2aef3 Mon Sep 17 00:00:00 2001 From: Joseph Huber Date: Fri, 19 Sep 2025 20:13:48 -0500 Subject: Revert "[ELF][LLDB] Add an nvsass triple (#159459)" (#159879) Summary: This patch has broken the `libc` build bot. I could work around that but the changes seem unnecessary. This reverts commit 9ba844eb3a21d461c3adc7add7691a076c6992fc. --- llvm/lib/Object/ObjectFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Object/ObjectFile.cpp') diff --git a/llvm/lib/Object/ObjectFile.cpp b/llvm/lib/Object/ObjectFile.cpp index 7fad21b..b0e4ea0 100644 --- a/llvm/lib/Object/ObjectFile.cpp +++ b/llvm/lib/Object/ObjectFile.cpp @@ -139,7 +139,7 @@ Triple ObjectFile::makeTriple() const { TheTriple.setObjectFormat(Triple::GOFF); } else if (TheTriple.isAMDGPU()) { TheTriple.setVendor(Triple::AMD); - } else if (TheTriple.isNVPTX() || TheTriple.isNVSASS()) { + } else if (TheTriple.isNVPTX()) { TheTriple.setVendor(Triple::NVIDIA); } -- cgit v1.1