blob: 6a7642c08b935c11c27bda2de9858d5b10c75c2e [file] [log] [blame]
//===-- c.c -----------------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
int d_init()
{
return 456;
}
int d_global = d_init();
int
d_function ()
{ // Find this line number within d_dunction().
return 12345;
}