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 
9 int main (int argc, char const *argv[])
10 {
11     // Add a body to the function, so we can set more than one
12     // breakpoint in it.
13     static volatile int var = 0;
14     var++;
15     return 0; // Set break point at this line.
16 }
17