1 //===-- main.cpp ------------------------------------------------*- 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 a(int val) 10 { 11 return val; // Breakpoint Location 1 12 } 13 14 float a(float val) 15 { 16 return val; // Breakpoint Location 2 17 } 18 19 int main (int argc, char const *argv[]) 20 { 21 int A1 = a(1); 22 float A2 = a(2.0f); 23 float A3 = a(3.0f); 24 25 return 0; 26 } 27