Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
150d2df7b659105cfbab39cc85af225391952815
/
.
/
test
/
CodeGenCXX
/
debug-info-large-constant.cpp
blob: 43f0463ac4efed81b93f192cfecfebe83fd5cb1f [
file
] [
log
] [
blame
]
Devang Patel
150d2df
2011-01-06 21:40:22 +0000
[
diff
] [
blame^
]
1
// RUN: %clang_cc1 -g %s -o /dev/null
2
// PR 8913
3
4
typedef
__uint128_t
word128
;
5
static
const
word128 m126
=
0xffffffffffffffffULL
;
6
word128 foo
()
{
7
return
m126
;
8
}