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 12 int 13 main(int argc, char const *argv[]) 14 { 15 int my_int = argc + 3; 16 printf("Hello UUID Mismatch: %d\n", my_int); // Set breakpoint here. 17 %ADD_EXTRA_CODE% 18 return 0; 19 } 20