1//===-- b.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//===----------------------------------------------------------------------===//
9static int __b_global = 2;
10
11int b(int arg) {
12    int result = arg + __b_global;
13    return result;
14}
15
16int bb(int arg1) {
17    int result2 = arg1 - __b_global;
18    return result2;
19}
20