]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/functionalities/archives/b.c
Vendor import of lldb trunk r351319 (just before the release_80 branch
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / functionalities / archives / b.c
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 //===----------------------------------------------------------------------===//
9 static int __b_global = 2;
10
11 int b(int arg) {
12     int result = arg + __b_global;
13     return result;
14 }
15
16 int bb(int arg1) {
17     int result2 = arg1 - __b_global;
18     return result2;
19 }