~ubuntu-branches/ubuntu/lucid/libatomic-ops/lucid

« back to all changes in this revision

Viewing changes to src/atomic_ops_sysdeps.S

  • Committer: Bazaar Package Importer
  • Author(s): Ian Wienand
  • Date: 2006-10-16 09:45:29 UTC
  • mfrom: (2.1.4 dapper)
  • Revision ID: james.westby@ubuntu.com-20061016094529-r3bevpq5w6g3rv20
Tags: 1.1-4
* Closes: #322027, #338469 -- add 04_m68k.patch for M68K support, from
  Roman Zippel <zippel@linux-m68k.org>.  Add note in README.Debian about
  port.
* Change mainatiner address to my @debian.org

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Include the appropriate system-dependent assembly file, if any.
 
3
 * This is used only if the platform supports neither inline assembly
 
4
 * code, nor appropriate compiler intrinsics.
 
5
 */
 
6
 
 
7
#if !defined(__GNUC__) && (defined(sparc) || defined(__sparc))
 
8
#  include "atomic_ops/sysdeps/sunc/sparc.S"
 
9
#endif