• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Common Blackfin assembly defines
2  *
3  * Copyright (C) 2005-2009 Analog Devices
4  */
5 
6 #if __GNUC__ <= 3
7 /* GCC-3.4 and older did not use hardware loops and thus did not have
8  * register constraints for declaring clobbers.
9  */
10 # define BFIN_HWLOOP0_REGS
11 # define BFIN_HWLOOP1_REGS
12 #else
13 # define BFIN_HWLOOP0_REGS , "LB0", "LT0", "LC0"
14 # define BFIN_HWLOOP1_REGS , "LB1", "LT1", "LC1"
15 #endif
16