Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
fbb4d1e43d0db9f8d1514a0209bb01f56e49d75f
/
.
/
clang
/
utils
/
perf-training
/
cxx
/
hello_world.cpp
blob: fc9f6892eb7405c4f6545f1efe38d387863d0d9f [
file
] [
log
] [
blame
]
// RUN: %clang_cpp -c %s
// RUN: %clang_cpp_skip_driver -Wall -pedantic -c %s
#include
<iostream>
int
main
(
int
,
char
**)
{
std
::
cout
<<
"Hello, World!"
;
return
0
;
}