summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/python_api/rdar-12481949/main.cpp
blob: f6ec2b8606484b2f858d6800a6ff2acfcde5b7ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//===-- main.cpp ------------------------------------------------*- 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>
#include <stdint.h>
int main ()
{
  int32_t myvar = -1;
  printf ("%d\n", myvar); // Set break point at this line.
  return myvar+1;
}
OpenPOWER on IntegriCloud