[Lldb-commits] [PATCH] D122621: Add missing case `HLSL` to `ParseLangArgs` in `TypeSystemClang.cpp`

Frederik Gossen via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Mar 28 16:36:33 PDT 2022


frgossen created this revision.
frgossen added a reviewer: beanz.
Herald added a project: All.
frgossen requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D122621

Files:
  lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp


Index: lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
===================================================================
--- lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
+++ lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
@@ -472,6 +472,7 @@
     switch (IK.getLanguage()) {
     case clang::Language::Unknown:
     case clang::Language::LLVM_IR:
+    case clang::Language::HLSL:
     case clang::Language::RenderScript:
       llvm_unreachable("Invalid input kind!");
     case clang::Language::OpenCL:


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D122621.418726.patch
Type: text/x-patch
Size: 536 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220328/7dcd8782/attachment.bin>


More information about the lldb-commits mailing list