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
[Object][WebAssembly] Fix data segment offsets higher than 2^31 (#125739)
[llvm-project.git]
/
lldb
/
test
/
API
/
commands
/
expression
/
rdar44436068
/
main.c
blob
4d5a041ad91d5d177d998495e068fbc6d6e390dc
1
int
main
(
void
)
2
{
3
__int128_t n
=
1
;
4
n
=
n
+
n
;
5
return
n
;
//%self.expect("expression n", substrs=['(__int128_t) $0 = 2'])
6
//%self.expect("expression n + 6", substrs=['(__int128_t) $1 = 8'])
7
//%self.expect("expression n + n", substrs=['(__int128_t) $2 = 4'])
8
}