mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
4b0efbfd4a
llvm-svn: 281810
12 lines
214 B
C++
12 lines
214 B
C++
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
// Source code for a simple DSO.
|
|
|
|
int DSO1(int a) {
|
|
if (a < 123456)
|
|
return 0;
|
|
return 1;
|
|
}
|
|
|