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
[NDS32] Add intrinsic functions for TLB operation and data prefech.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr70920-1.c
blob
9b7e2d0e53b9abc6eee05126dfde7c8aa18fd4d4
1
/* { dg-do compile } */
2
/* { dg-options "-fdump-tree-gimple" } */
3
4
#include <stdint.h>
5
6
void
f1
();
7
void
f2
();
8
9
void
10
foo
(
int
*
a
)
11
{
12
if
((
intptr_t
)
a
==
0
)
13
{
14
f1
();
15
if
(
a
)
16
f2
();
17
}
18
}
19
20
/* { dg-final { scan-tree-dump "if \\(a == 0B\\)" "gimple" } } */