* gdbint.texinfo (Host Definition): Remove description of R_OK.
[deliverable/binutils-gdb.git] / gprof / i386.c
index 2abf2dc8fa8bac667680c18095a90429acd1c217..8836dc3e99b70d749fe770a2dbd53982889310d9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1983 Regents of the University of California.
+ * Copyright (c) 1983, 2001 Regents of the University of California.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms are permitted
 #include "hist.h"
 #include "symtab.h"
 
+int i386_iscall PARAMS ((unsigned char *));
+void i386_find_call PARAMS ((Sym *, bfd_vma, bfd_vma));
 
 int
-DEFUN (i386_iscall, (ip), unsigned char *ip)
+i386_iscall (ip)
+     unsigned char *ip;
 {
   if (*ip == 0xe8)
     return 1;
@@ -67,11 +70,11 @@ i386_find_call (parent, p_lowpc, p_highpc)
       if (i386_iscall (instructp))
        {
          DBG (CALLDEBUG,
-              printf ("[findcall]\t0x%x:call",
-                      instructp - (unsigned char *) delta));
+              printf ("[findcall]\t0x%lx:call",
+                      (unsigned long) (instructp - (unsigned char *) delta)));
          /*
           *  regular pc relative addressing
-          *    check that this is the address of 
+          *    check that this is the address of
           *    a function.
           */
 
This page took 0.023323 seconds and 4 git commands to generate.