v / thirdparty / libatomic_ops / atomic_ops_sysdeps.S
9 lines · 8 sloc · 306 bytes · f53b5d737fd636890520101e736ad29e20d3c322
Raw
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
10