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 "[LoongArch] Eliminate the redundant sign extension of division (#107971)"
[llvm-project.git]
/
lldb
/
test
/
API
/
python_api
/
symbol-context
/
two-files
/
file1.cpp
blob
327d0fb7718fd6f38eaa1b3191bd0a6e816a9462
1
#include
"decls.h"
2
3
int
g
() {
4
return
1
;
5
}
6
7
struct1
::~
struct1
() {
8
int
x
=
g
();
// Break1
9
}
10
11
void
struct1
::
f
() {}
12
13
int
main
() {
14
struct1
::
f
();
15
struct2
::
f
();
16
17
struct1 s1
;
18
struct2 s2
;
19
20
return
0
;
21
}