blob: 6d725a5759b54ed0d68575a41fb9630a6e3dd91b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//===-- main.cpp ------------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
extern int j;
extern int gfunc(int i);
extern int gfunc2(int i);
int
main()
{ // FUNC_main
int i = gfunc(j) + gfunc2(j);
return i == 0;
}
|