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
Teach ScalarEvolution how to reason about no-wrap flags on loops
[llvm/avr.git]
/
test
/
FrontendC++
/
2009-02-16-CtorNames-dbg.cpp
blob
8f1b598aa2bf482b69c7da7dcba283d94e54afd6
1
// RUN: %llvmgcc -S -g --emit-llvm %s -o - | grep "\~A"
2
class
A
{
3
int
i
;
4
public
:
5
A
() {
i
=
0
; }
6
~
A
() {
i
=
42
; }
7
};
8
9
A a
;
10