summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/lang/c/typedef/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/c/typedef/main.c')
-rw-r--r--lldb/packages/Python/lldbsuite/test/lang/c/typedef/main.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/typedef/main.c b/lldb/packages/Python/lldbsuite/test/lang/c/typedef/main.c
index 6c13affbbc1..62f8a00e664 100644
--- a/lldb/packages/Python/lldbsuite/test/lang/c/typedef/main.c
+++ b/lldb/packages/Python/lldbsuite/test/lang/c/typedef/main.c
@@ -6,6 +6,11 @@
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
+void test()
+{
+ typedef double * a;
+ a b = 0; // Set break point 4.
+}
int main (int argc, char const *argv[])
{
typedef float a;
@@ -16,25 +21,26 @@ int main (int argc, char const *argv[])
typedef char a;
i++;
a charvariable = 'a'; // Set break point 3.
+ test();
}
{
int c = 0;
- c++; // Set break point 4.
+ c++; // Set break point 5.
for(i = 0 ; i < 1 ; i++)
{
typedef int a;
a b;
- b = 7; // Set break point 5.
+ b = 7; // Set break point 6.
}
for(i = 0 ; i < 1 ; i++)
{
typedef double a;
a b;
- b = 3.14; // Set break point 6.
+ b = 3.14; // Set break point 7.
}
- c = 1; // Set break point 7.
+ c = 1; // Set break point 8.
}
floatvariable = 2.5;
- floatvariable = 2.8; // Set break point 8.
+ floatvariable = 2.8; // Set break point 9.
return 0;
}
OpenPOWER on IntegriCloud