1 //===-- main.cpp ------------------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include <stdio.h> 11 #include <stdint.h> 12 int main () 13 { 14 int32_t myvar = -1; 15 printf ("%d\n", myvar); // Set break point at this line. 16 return myvar+1; 17 } 18