Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
84e49865cbc2392787efcf2211ec53a947128a9e
/
.
/
test
/
CodeGen
/
2007-09-14-NegatePointer.c
blob: 52367e6c667b770f09689a03e0791a284ec6d0a7 [
file
] [
log
] [
blame
]
Eric Christopher
3883e66
2011-07-26 22:17:02 +0000
[
diff
] [
blame
]
1
// RUN: %clang_cc1 -emit-llvm %s -o -
2
// PR1662
3
4
int
foo
(
unsigned
char
*
test
)
{
5
return
0U
-
(
unsigned
int
)
test
;
6
}
7