repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
pass machinemoduleinfo down into getSymbolForDwarfGlobalReference,
[llvm/avr.git]
/
test
/
LLVMC
/
C++
/
hello.cpp
blob
b9c6399ebfc1c0f677e48d9703a2c73bad336943
1
// Test that we can compile C++ code.
2
// RUN: llvmc %s -o %t
3
// RUN: %abs_tmp | grep hello
4
#include <iostream>
5
6
int
main
() {
7
std
::
cout
<<
"hello"
<<
'
\n
'
;
8
}