pass machinemoduleinfo down into getSymbolForDwarfGlobalReference,
[llvm/avr.git] / test / LLVMC / C++ / hello.cpp
blobb9c6399ebfc1c0f677e48d9703a2c73bad336943
1 // Test that we can compile C++ code.
2 // RUN: llvmc %s -o %t
3 // RUN: %abs_tmp | grep hello
4 #include <iostream>
6 int main() {
7 std::cout << "hello" << '\n';