diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-02 19:03:57 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-02 19:03:57 +0000 |
commit | 8dc1d08d0c3a5abe3856b04a5a864227fe0ba62d (patch) | |
tree | 65d254a60aec64fb933cf3c4c11ffa7235e02413 /include | |
parent | 327b0c83302af0a288c65a03f4f2c82af321bd28 (diff) |
Add in support for the Hitach H8/300H architecture,
contributed by Yoshinori Sato <qzb04471@nifty.ne.jp>
Diffstat (limited to 'include')
-rw-r--r-- | include/features.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/features.h b/include/features.h index cfbca88e3..54f839662 100644 --- a/include/features.h +++ b/include/features.h @@ -344,7 +344,7 @@ asm (".stabs \"" msg "\",30,0,0,0\n\t" \ ".stabs \"" #symbol "\",1,0,0,0\n"); # define weak_alias(name, aliasname) \ - __asm__(".global alias\n.set alias,original"); + __asm__(".global _" #aliasname "\n.set _" #aliasname ",_" #name); #endif #endif /* features.h */ |