diff options
author | Joseph Huber <huberjn@outlook.com> | 2025-09-19 20:13:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-19 20:13:48 -0500 |
commit | 0fa3061c4e1468f8ab8fbb06ef0d19c00df2aef3 (patch) | |
tree | 167607efd9aca42b287bbcbcfe600bdfbb18ad47 /llvm/lib/Object/ObjectFile.cpp | |
parent | 5b017e3884956bc9bd65f91f86c0ccbbaa7fc653 (diff) | |
download | llvm-0fa3061c4e1468f8ab8fbb06ef0d19c00df2aef3.zip llvm-0fa3061c4e1468f8ab8fbb06ef0d19c00df2aef3.tar.gz llvm-0fa3061c4e1468f8ab8fbb06ef0d19c00df2aef3.tar.bz2 |
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.
Diffstat (limited to 'llvm/lib/Object/ObjectFile.cpp')
-rw-r--r-- | llvm/lib/Object/ObjectFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |