• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
b(int arg)11 int b(int arg) {
12     int result = arg + __b_global;
13     return result;
14 }
15 
bb(int arg1)16 int bb(int arg1) {
17     int result2 = arg1 - __b_global;
18     return result2;
19 }
20