projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4252748
)
Avoid a gcc warning.
author
Bruno Haible
<bruno@clisp.org>
Sun, 4 Mar 2007 20:20:07 +0000
(20:20 +0000)
committer
Bruno Haible
<bruno@clisp.org>
Sun, 4 Mar 2007 20:20:07 +0000
(20:20 +0000)
tests/test-alloca-opt.c
patch
|
blob
|
history
diff --git
a/tests/test-alloca-opt.c
b/tests/test-alloca-opt.c
index 33f85db4076b259bb2d68c3b6897e8cb84d7d0eb..65bc19f026ccdb2a6aa5e2e340d4ec417ef44127 100644
(file)
--- a/
tests/test-alloca-opt.c
+++ b/
tests/test-alloca-opt.c
@@
-29,6
+29,7
@@
static void
do_allocation (int n)
{
void *ptr = alloca (n);
+ (void) ptr;
}
void (*func) (int) = do_allocation;