repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Heuristic: If the number of operands in the alias are more than the number of
[llvm/stm8.git]
/
test
/
LLVMC
/
ObjC++
/
hello.mm
blob
2125dc76b7222aab72bb0566c446a370594443b4
1
// Test that we can compile Objective-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
}