[Lldb-commits] [lldb] r167065 - in /lldb/trunk/source: Core/Value.cpp Target/ABI.cpp Target/Target.cpp

Greg Clayton gclayton at apple.com
Tue Oct 30 16:56:14 PDT 2012


Author: gclayton
Date: Tue Oct 30 18:56:14 2012
New Revision: 167065

URL: http://llvm.org/viewvc/llvm-project?rev=167065&view=rev
Log:
Fixed build warnings.


Modified:
    lldb/trunk/source/Core/Value.cpp
    lldb/trunk/source/Target/ABI.cpp
    lldb/trunk/source/Target/Target.cpp

Modified: lldb/trunk/source/Core/Value.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Value.cpp?rev=167065&r1=167064&r2=167065&view=diff
==============================================================================
--- lldb/trunk/source/Core/Value.cpp (original)
+++ lldb/trunk/source/Core/Value.cpp Tue Oct 30 18:56:14 2012
@@ -662,6 +662,7 @@
     switch (value_type)
     {
     case eValueTypeScalar:      return "scalar";
+    case eValueTypeVector:      return "vector";
     case eValueTypeFileAddress: return "file address";
     case eValueTypeLoadAddress: return "load address";
     case eValueTypeHostAddress: return "host address";

Modified: lldb/trunk/source/Target/ABI.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/ABI.cpp?rev=167065&r1=167064&r2=167065&view=diff
==============================================================================
--- lldb/trunk/source/Target/ABI.cpp (original)
+++ lldb/trunk/source/Target/ABI.cpp Tue Oct 30 18:56:14 2012
@@ -156,6 +156,7 @@
             // we don't do anything with these for now
             break;
         case Value::eValueTypeScalar:
+        case Value::eValueTypeVector:
             clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVIsFreezeDried;
             clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVIsLLDBAllocated;
             clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVNeedsAllocation;

Modified: lldb/trunk/source/Target/Target.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/Target.cpp?rev=167065&r1=167064&r2=167065&view=diff
==============================================================================
--- lldb/trunk/source/Target/Target.cpp (original)
+++ lldb/trunk/source/Target/Target.cpp Tue Oct 30 18:56:14 2012
@@ -1711,6 +1711,7 @@
             // we don't do anything with these for now
             break;
         case Value::eValueTypeScalar:
+        case Value::eValueTypeVector:
             clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVIsLLDBAllocated;
             clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVNeedsAllocation;
             break;





More information about the lldb-commits mailing list