projects
/
interaspect.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78543a1
)
Fixed incorrect protoype in in-param test case.
author
Justin Seyster
<jseyster@cs.sunysb.edu>
Wed, 27 Oct 2010 00:20:35 +0000
(20:20 -0400)
committer
Justin Seyster
<jseyster@cs.sunysb.edu>
Wed, 27 Oct 2010 00:20:35 +0000
(20:20 -0400)
test/allpc-inparam-hooks.c
patch
|
blob
|
history
diff --git
a/test/allpc-inparam-hooks.c
b/test/allpc-inparam-hooks.c
index 78d634a28accfb6ff88e6d1553dc375ad6bf3729..f4ff42d637d410612a48e4d2baaae34de065f400 100644
(file)
--- a/
test/allpc-inparam-hooks.c
+++ b/
test/allpc-inparam-hooks.c
@@
-1,17
+1,17
@@
#include <stdint.h>
#include <stdio.h>
-void _advice_assign(int
32
_t a, double b)
+void _advice_assign(int
64
_t a, double b)
{
printf("Assign advice: (%d, %f)\n", (int)a, b);
}
-void _advice_printf(int
32
_t a, double b)
+void _advice_printf(int
64
_t a, double b)
{
printf("printf advice: (%d, %f)\n", (int)a, b);
}
-void _advice_exit(int
32
_t a, double b)
+void _advice_exit(int
64
_t a, double b)
{
printf("Exit advice: (%d, %f)\n", (int)a, b);
}