repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git]
/
test
/
FrontendC++
/
2004-03-15-CleanupsAndGotos.cpp
blob
9bc70c84ab424feebba2843dd42120ccceb6a36e
1
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3
// Testcase from Bug 291
4
5
struct
X
{
6
~
X
();
7
};
8
9
void
foo
() {
10
X v
;
11
12
TryAgain
:
13
goto
TryAgain
;
14
}