llvmbot wrote:

<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lldb

Author: David Spickett (DavidSpickett)

<details>
<summary>Changes</summary>



---
Full diff: https://github.com/llvm/llvm-project/pull/73811.diff


1 Files Affected:

- (modified) lldb/source/Utility/Scalar.cpp (+1-1) 


``````````diff
diff --git a/lldb/source/Utility/Scalar.cpp b/lldb/source/Utility/Scalar.cpp
index 5ad68065bce1b76..dc5c88724762c44 100644
--- a/lldb/source/Utility/Scalar.cpp
+++ b/lldb/source/Utility/Scalar.cpp
@@ -31,7 +31,7 @@ using llvm::APSInt;
 Scalar::PromotionKey Scalar::GetPromoKey() const {
   switch (m_type) {
   case e_void:
-    return PromotionKey{e_void, 0, false};
+    return PromotionKey{e_void, 0, false                   };
   case e_int:
     return PromotionKey{e_int, m_integer.getBitWidth(), 
m_integer.isUnsigned()};
   case e_float:

``````````

</details>


https://github.com/llvm/llvm-project/pull/73811
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to