repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[LVI] Add trunc to i1 handling. (#124480)
[llvm-project.git]
/
compiler-rt
/
test
/
asan
/
TestCases
/
Windows
/
hello_world.cpp
blob
507886e71acd3cd0ed811ee4d25c0865eace529e
1
// RUN: %clang_cl_asan %Od %s %Fe%t
2
// RUN: %run %t | FileCheck %s
3
4
#include <stdio.h>
5
6
int
main
() {
7
printf
(
"Hello, world!
\n
"
);
8
// CHECK: Hello, world!
9
}