PERFORCE change 74476 for review

Peter Wemm peter at FreeBSD.org
Mon Apr 4 15:49:35 PDT 2005


http://perforce.freebsd.org/chv.cgi?CH=74476

Change 74476 by peter at peter_melody on 2005/04/04 22:49:08

	Make this interim code compile properly.

Affected files ...

.. //depot/projects/hammer/sys/amd64/amd64/db_disasm.c#8 edit

Differences ...

==== //depot/projects/hammer/sys/amd64/amd64/db_disasm.c#8 (text+ko) ====

@@ -1291,8 +1291,7 @@
 	}
 	else {
 	    db_printf("%s", i_name);
-	    if ((strncmp(i_name, "push", 4) == 0) ||
-		(strncmp(i_name, "pop", 3) == 0)) {
+	    if (inst >= 0x50 && inst <= 0x5f) {
 		i_size = NONE;
 		db_printf("q");
 	    }


More information about the p4-projects mailing list