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
Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2002-01-23-LoadQISIReloadFailure.c
blob
ec454c826835ada32ccdd6f97422842574c5293c
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
/* Regression test. Just compile .c -> .ll to test */
4
int
foo
(
void
) {
5
unsigned char
*
pp
;
6
unsigned
w_cnt
;
7
8
w_cnt
+= *
pp
;
9
10
return
w_cnt
;
11
}