Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bfin.h « libspeex - github.com/xiph/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b934cf2f139ea6d3c1c9803ee2f46b077097f861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Common Blackfin assembly defines
 *
 * Copyright (C) 2005-2009 Analog Devices
 */

#if __GNUC__ <= 3
/* GCC-3.4 and older did not use hardware loops and thus did not have
 * register constraints for declaring clobbers.
 */
# define BFIN_HWLOOP0_REGS
# define BFIN_HWLOOP1_REGS
#else
# define BFIN_HWLOOP0_REGS , "LB0", "LT0", "LC0"
# define BFIN_HWLOOP1_REGS , "LB1", "LT1", "LC1"
#endif