]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/functionalities/load_unload/d.cpp
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / functionalities / load_unload / d.cpp
1 //===-- c.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
10 int d_init()
11 {
12     return 123;
13 }
14
15 int d_global = d_init();
16
17 int
18 d_function ()
19 { // Find this line number within d_dunction().
20     return 700;
21 }