Fix the thread jump test case for 32-bit inferiors. A jump was going back to a function call using a source line number. However, the parameters being passed to the function were setup before the instruction we jumped to. In other words, the source line was associated with assembly after the function parameters had been setup for the function to be called.

llvm-svn: 191457
This commit is contained in:
Matt Kopec 2013-09-26 20:54:17 +00:00
parent bb5c5f8289
commit cc64cc1773
1 changed files with 4 additions and 3 deletions

View File

@ -26,9 +26,10 @@ int main ()
{
int i;
double j;
i = min(4, 5); // 3rd marker
j = min(7.0, 8.0); // 4th marker
int min_i_a = 4, min_i_b = 5;
double min_j_a = 7.0, min_j_b = 8.0;
i = min(min_i_a, min_i_b); // 3rd marker
j = min(min_j_a, min_j_b); // 4th marker
return 0;
}