Blame SOURCES/testsuite-10.1.0-386.patch

e8bbf5
--- dyninst-10.1.0/testsuite-10.1.0/src/instruction/test_instruction_farcall.C
e8bbf5
+++ dyninst-10.1.0/testsuite-10.1.0/src/instruction/test_instruction_farcall.C
e8bbf5
@@ -96,21 +96,21 @@ test_results_t test_instruction_farcall_Mutator::executeTest()
e8bbf5
   if(decodedInsns.size() != expectedInsns) // six valid, one invalid
e8bbf5
   {
e8bbf5
     logerror("FAILED: Expected %d instructions, decoded %d\n", expectedInsns, decodedInsns.size());
e8bbf5
-    for(std::vector<Instruction::Ptr>::iterator curInsn = decodedInsns.begin();
e8bbf5
+    for(std::vector<Instruction>::iterator curInsn = decodedInsns.begin();
e8bbf5
 	curInsn != decodedInsns.end();
e8bbf5
 	++curInsn)
e8bbf5
     {
e8bbf5
-      logerror("\t%s\t", (*curInsn)->format().c_str());
e8bbf5
-      for(unsigned j = 0; j < (*curInsn)->size(); ++j)
e8bbf5
+      logerror("\t%s\t", (*curInsn).format().c_str());
e8bbf5
+      for(unsigned j = 0; j < (*curInsn).size(); ++j)
e8bbf5
       {
e8bbf5
-	logerror("%x ", (*curInsn)->rawByte(j));
e8bbf5
+	logerror("%x ", (*curInsn).rawByte(j));
e8bbf5
       }
e8bbf5
       logerror("\n");
e8bbf5
     }
e8bbf5
     
e8bbf5
     return FAILED;
e8bbf5
   }
e8bbf5
-  if(decodedInsns.back() && decodedInsns.back()->isValid())
e8bbf5
+  if(decodedInsns.size() > 0 && decodedInsns.back().isValid())
e8bbf5
   {
e8bbf5
     logerror("FAILED: Expected instructions to end with an invalid instruction, but they didn't");
e8bbf5
     return FAILED;