blob: 2a723ed61e5503c2d6498c34e5f74b0a7d748adf (
plain)
1
2
3
4
5
6
7
8
9
|
; RUN: llc -march=js < %s | not grep printf
; llc shouldn't emit any code or bookkeeping for unused declarations.
define void @foo() {
ret void
}
declare i32 @printf(i8* nocapture, ...)
|