diff options
Diffstat (limited to 'validation/kill-phi-node.c')
| -rw-r--r-- | validation/kill-phi-node.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/validation/kill-phi-node.c b/validation/kill-phi-node.c index 88de9f96..cff62b64 100644 --- a/validation/kill-phi-node.c +++ b/validation/kill-phi-node.c @@ -9,6 +9,15 @@ void foo(int a, int *b, unsigned int g) d = 8; } +int bar(void); +int bar(void) +{ + int i; + for (i = 0; i; i--) + ; + return 0; +} + /* * check-name: kill-phi-node * check-command: test-linearize $file |
