aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/libjava/sysdep/pa/descriptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.4.3/libjava/sysdep/pa/descriptor.h')
-rw-r--r--gcc-4.4.3/libjava/sysdep/pa/descriptor.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc-4.4.3/libjava/sysdep/pa/descriptor.h b/gcc-4.4.3/libjava/sysdep/pa/descriptor.h
deleted file mode 100644
index d9888516d..000000000
--- a/gcc-4.4.3/libjava/sysdep/pa/descriptor.h
+++ /dev/null
@@ -1,7 +0,0 @@
-// Given a function pointer, return the code address.
-// If the plabel bit is set, mask it off and return the code from the
-// first word of the function descriptor. Otherwise, the function
-// pointer is the code address.
-
-#define UNWRAP_FUNCTION_DESCRIPTOR(X) \
- (((unsigned int)(X)) & 2 ? *(void **)(((unsigned int)(X)) & ~3) : (X))