summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/lang/c/step-target/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/c/step-target/main.c')
-rw-r--r--packages/Python/lldbsuite/test/lang/c/step-target/main.c40
1 files changed, 0 insertions, 40 deletions
diff --git a/packages/Python/lldbsuite/test/lang/c/step-target/main.c b/packages/Python/lldbsuite/test/lang/c/step-target/main.c
deleted file mode 100644
index 86a26c4d47a4..000000000000
--- a/packages/Python/lldbsuite/test/lang/c/step-target/main.c
+++ /dev/null
@@ -1,40 +0,0 @@
-#include <stdio.h>
-
-void
-lotsOfArgs
-(
- int firstArg,
- int secondArg,
- int thirdArg,
- int fourthArg
-)
-{
- printf ("First: %d Second: %d Third: %d Fourth: %d.\n",
- firstArg,
- secondArg,
- thirdArg,
- fourthArg);
-}
-
-int
-modifyInt(int incoming)
-{
- return incoming % 2;
-}
-
-int
-main (int argc, char **argv)
-{
- if (argc > 0)
- {
- int var_makes_block = argc + 1;
- printf ("Break here to try targetted stepping.\n");
- lotsOfArgs(var_makes_block,
- modifyInt(20),
- 30,
- modifyInt(40));
- printf ("Done calling lotsOfArgs.");
- }
- printf ("All done.\n");
- return 0;
-}