Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
81fe1fbf4abd00b24e078a80cb15a2d2c1343f11
/
.
/
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
;
}