diff options
author | Anton Vorontsov <avorontsov@ru.mvista.com> | 2009-11-28 01:33:36 +0300 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2009-12-01 11:57:32 -0500 |
commit | 01f8d9fcc10100b16391cf797dc0647e7112c5a9 (patch) | |
tree | c2a718953e5d51defc47b7cf5ee0173a93d6918b /runtime/uprobes2/uprobes_arch.c | |
parent | 9b66e023ce3f320cb560ab6e2cc78a219e262c5e (diff) | |
download | systemtap-steved-01f8d9fcc10100b16391cf797dc0647e7112c5a9.tar.gz systemtap-steved-01f8d9fcc10100b16391cf797dc0647e7112c5a9.tar.xz systemtap-steved-01f8d9fcc10100b16391cf797dc0647e7112c5a9.zip |
Rename uprobes_ppc64.c to uprobes_ppc.c, use it for ppc32
The code *looks* generic enough, so I think it can be used for ppc32
without modifications.
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Diffstat (limited to 'runtime/uprobes2/uprobes_arch.c')
-rw-r--r-- | runtime/uprobes2/uprobes_arch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/uprobes2/uprobes_arch.c b/runtime/uprobes2/uprobes_arch.c index 3c86804e..a91d5b6a 100644 --- a/runtime/uprobes2/uprobes_arch.c +++ b/runtime/uprobes2/uprobes_arch.c @@ -1,7 +1,7 @@ #if defined (__x86_64__) || defined(__i386) #include "uprobes_x86.c" -#elif defined (__powerpc64__) -#include "../uprobes/uprobes_ppc64.c" +#elif defined (__powerpc__) +#include "../uprobes/uprobes_ppc.c" #elif defined (__s390__) || defined (__s390x__) #include "../uprobes/uprobes_s390.c" #elif defined (__ia64__) |