repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr87600.h
blob
af91f6345cd4bf1bf3ac527d260b482db2cc32ad
1
#if defined (__aarch64__)
2
# define REG1
"x0"
3
# define REG2
"x1"
4
#elif defined (__arm__)
5
# define REG1
"r0"
6
# define REG2
"r1"
7
#elif defined (__i386__)
8
# define REG1
"%eax"
9
# define REG2
"%edx"
10
#elif defined (__powerpc__) || defined (__POWERPC__)
11
# define REG1
"r3"
12
# define REG2
"r4"
13
#elif defined (__s390__)
14
# define REG1
"0"
15
# define REG2
"1"
16
#elif defined (__x86_64__)
17
# define REG1
"rax"
18
# define REG2
"rdx"
19
#endif