diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/commands/target/basic/c.c')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/commands/target/basic/c.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/target/basic/c.c b/lldb/packages/Python/lldbsuite/test/commands/target/basic/c.c new file mode 100644 index 00000000000..a2cb5995aa5 --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/commands/target/basic/c.c @@ -0,0 +1,28 @@ +//===-- main.c --------------------------------------------------*- C++ -*-===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// +#include <stdio.h> + +int main (int argc, char const *argv[]) +{ + enum days { + Monday = 10, + Tuesday, + Wednesday, + Thursday, + Friday, + Saturday, + Sunday, + kNumDays + }; + enum days day; + for (day = Monday - 1; day <= kNumDays + 1; day++) + { + printf("day as int is %i\n", (int)day); + } + return 0; // Set break point at this line. +} |