Adding subdirectory dg.exp files in order to be able to use dejagnu to only run speci...
[oota-llvm.git] / test / ExecutionEngine / simpletest.ll
1 ; RUN: llvm-as -f %s -o %t.bc
2 ; RUN: lli %t.bc > /dev/null
3
4 implementation
5
6 int %bar() { ret int 0 }
7
8 int %main() {
9         %r = call int %bar()
10         ret int %r
11 }
12