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
pass machinemoduleinfo down into getSymbolForDwarfGlobalReference,
[llvm/avr.git]
/
test
/
Transforms
/
ADCE
/
dce_pure_invoke.ll
blob
c16d45cc239394fb6ac60fad737a719fe880972d
1
; RUN: opt < %s -adce -S | grep null
2
3
declare i32 @strlen(i8*) readnone
4
5
define i32 @test() {
6
; invoke of pure function should not be deleted!
7
invoke i32 @strlen( i8* null ) readnone
8
to label %Cont unwind label %Other ; <i32>:1 [#uses=0]
9
10
Cont: ; preds = %0
11
ret i32 0
12
13
Other: ; preds = %0
14
ret i32 1
15
}