1//===-- a.c -----------------------------------------------------*- 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//===----------------------------------------------------------------------===//
9int __a_global = 1;
10
11int a(int arg) {
12    int result = arg + __a_global;
13    return result; // Set file and line breakpoint inside a().
14}
15
16int aa(int arg1) {
17    int result1 = arg1 - __a_global;
18    return result1;
19}
20