[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / lldb / packages / Python / lldbsuite / test / macosx / duplicate-archive-members / a.c
blob4d57868c32057f1c7b61c51d7b2b96aebb99064b
1 //===-- a.c -----------------------------------------------------*- 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 int __a_global = 1;
10 int a(int arg) {
11 int result = arg + __a_global;
12 return result;