[vmkit-commits] [vmkit] r195680 - remove the stack check,	does not work for me
    Gael Thomas 
    gael.thomas at lip6.fr
       
    Mon Nov 25 12:15:18 PST 2013
    
    
  
Author: gthomas
Date: Mon Nov 25 14:15:18 2013
New Revision: 195680
URL: http://llvm.org/viewvc/llvm-project?rev=195680&view=rev
Log:
remove the stack check, does not work for me
Modified:
    vmkit/trunk/lib/vmkit/CommonThread/ctthread.cpp
Modified: vmkit/trunk/lib/vmkit/CommonThread/ctthread.cpp
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/lib/vmkit/CommonThread/ctthread.cpp?rev=195680&r1=195679&r2=195680&view=diff
==============================================================================
--- vmkit/trunk/lib/vmkit/CommonThread/ctthread.cpp (original)
+++ vmkit/trunk/lib/vmkit/CommonThread/ctthread.cpp Mon Nov 25 14:15:18 2013
@@ -137,8 +137,8 @@ word_t StackWalker::operator*() {
 
 void StackWalker::operator++() {
   if (addr != thread->baseSP) {
-    assert((addr < thread->baseSP) && "Corrupted stack");
-    assert((addr < System::GetCallerOfAddress(addr)) && "Corrupted stack");
+    //assert((addr < thread->baseSP) && "Corrupted stack");
+    //assert((addr < System::GetCallerOfAddress(addr)) && "Corrupted stack");
     if ((frame != NULL) && (addr == frame->currentFP)) {
       assert(frame->currentIP == 0);
       frame = frame->previousFrame;
    
    
More information about the vmkit-commits
mailing list