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
* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr31953.c
blob
667c9ae88515a256b0018742558a0ce2b6ff9cad
1
struct
WView
2
{
3
int
hexedit_mode
:
1
;
4
};
5
toggle_hexedit_mode
(
struct
WView
*
view
)
6
{
7
if
(
view
->
hexedit_mode
)
8
{
9
}
10
else
11
{
12
view
->
hexedit_mode
= !
view
->
hexedit_mode
;
13
}
14
}