diff options
| author | S. Bharadwaj Yadavalli <Bharadwaj.Yadavalli@microsoft.com> | 2024-05-06 22:21:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-06 22:21:37 -0400 |
| commit | 178ff395006f204265b4f6fe72a3dbb2b9a79b47 (patch) | |
| tree | 3ea5bb12cb9803f213db6f1624e85087bdd4897d /llvm/lib/IR/Verifier.cpp | |
| parent | 0ab4458df0688955620b72cc2c72a32dffad3615 (diff) | |
| download | llvm-178ff395006f204265b4f6fe72a3dbb2b9a79b47.zip llvm-178ff395006f204265b4f6fe72a3dbb2b9a79b47.tar.gz llvm-178ff395006f204265b4f6fe72a3dbb2b9a79b47.tar.bz2 | |
Revert "[DirectX][DXIL] Set DXIL Version in DXIL target triple based on shader model version" (#91290)
Reverts llvm/llvm-project#90809
Need to investigate ASAN failures.
Diffstat (limited to 'llvm/lib/IR/Verifier.cpp')
| -rw-r--r-- | llvm/lib/IR/Verifier.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/Verifier.cpp b/llvm/lib/IR/Verifier.cpp index a463e67..41d3fce 100644 --- a/llvm/lib/IR/Verifier.cpp +++ b/llvm/lib/IR/Verifier.cpp @@ -152,8 +152,8 @@ struct VerifierSupport { bool TreatBrokenDebugInfoAsError = true; explicit VerifierSupport(raw_ostream *OS, const Module &M) - : OS(OS), M(M), MST(&M), TT(Triple::normalize(M.getTargetTriple())), - DL(M.getDataLayout()), Context(M.getContext()) {} + : OS(OS), M(M), MST(&M), TT(M.getTargetTriple()), DL(M.getDataLayout()), + Context(M.getContext()) {} private: void Write(const Module *M) { |
