summaryrefslogtreecommitdiff
path: root/test/manycalls.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/manycalls.c')
-rw-r--r--test/manycalls.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/manycalls.c b/test/manycalls.c
new file mode 100644
index 0000000..bfcc775
--- /dev/null
+++ b/test/manycalls.c
@@ -0,0 +1,24 @@
+int one() {
+ return 1;
+}
+
+int two() {
+ return 2;
+}
+
+int three() {
+ return 3;
+}
+
+int four() {
+ return 4;
+}
+
+int main() {
+ int d;
+ int a = one();
+ int b = two();
+ int c = three();
+ d = four();
+ return d;
+}