blob: a4921d2752c64ca5e892ca21a200646e6791acb4 [file] [log] [blame]
Jim Cownie33f7b242014-04-09 15:40:23 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.txt for details.
7//
8//===----------------------------------------------------------------------===//
9
10
11extern "C" void __offload_target_main(void);
12
13int main(int argc, char ** argv)
14{
15 __offload_target_main();
16 return 0;
17}