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
PR inline-asm/84742
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pushpop_macro.c
blob
08a82204313e899fbd5643ca8e3d79a27a46e642
1
extern
void
abort
();
2
3
#define _ 2
4
#pragma push_macro(
"_"
)
5
#undef _
6
#define _ 1
7
#pragma pop_macro(
"_"
)
8
9
int
main
()
10
{
11
if
(
_
!=
2
)
12
abort
();
13
return
0
;
14
}
15