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