[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / lldb / packages / Python / lldbsuite / test / commands / target / basic / c.c
bloba2cb5995aa59e368f3005f2e961d3ced8d4fa49d
1 //===-- main.c --------------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 #include <stdio.h>
10 int main (int argc, char const *argv[])
12 enum days {
13 Monday = 10,
14 Tuesday,
15 Wednesday,
16 Thursday,
17 Friday,
18 Saturday,
19 Sunday,
20 kNumDays
22 enum days day;
23 for (day = Monday - 1; day <= kNumDays + 1; day++)
25 printf("day as int is %i\n", (int)day);
27 return 0; // Set break point at this line.