~ubuntu-branches/debian/squeeze/ffcall/squeeze

« back to all changes in this revision

Viewing changes to callback/vacall_r/asmmips.h

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Egger
  • Date: 2010-06-26 15:29:30 UTC
  • mfrom: (5.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100626152930-c09y01gk3szcnykn
Tags: 1.10+cvs20100619-2
Ship to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Assembly language support for mips CPU.
 
2
// Bruno Haible 29.5.1999
 
3
 
 
4
// When assembly language code is compiled into a shared library, ELF linkers
 
5
// need to know which symbols are functions.
 
6
#if defined(__GNU__) || defined(__NetBSD__)
 
7
#define DECLARE_FUNCTION(name) .type name,@function
 
8
#else
 
9
#define DECLARE_FUNCTION(name)
 
10
#endif