implement aliases for div/idiv that have an explicit A register operand,
[oota-llvm.git] / test / LLVMC / C++ / together.cpp
1 // Check that we can compile files of different types together.
2 // RUN: llvmc %s %p/../test_data/together.c -o %t
3 // RUN: %abs_tmp | grep hello
4 // XFAIL: vg
5
6 extern "C" void test();
7
8 int main() {
9   test();
10 }