mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
2c9f6ab06d
-callgraph => print-callgraph -callscc => print-callgraph-sccs -cfgscc => print-cfg-sccs -externalfnconstants => print-externalfnconstants -print => print-function -print-alias-sets (no change) -print-callgraph => dot-callgraph -print-cfg => dot-cfg -print-cfg-only => dot-cfg-only -print-dom-info (no change) -printm => print-module -printusedtypes => print-used-types llvm-svn: 56487
14 lines
292 B
LLVM
14 lines
292 B
LLVM
; Call graph construction crash: Not handling indirect calls right
|
|
;
|
|
; RUN: llvm-as < %s | opt -analyze -print-callgraph >& /dev/null
|
|
;
|
|
|
|
%FunTy = type i32 (i32)
|
|
|
|
define void @invoke(%FunTy* %x) {
|
|
%foo = call i32 %x( i32 123 ) ; <i32> [#uses=0]
|
|
ret void
|
|
}
|
|
|
|
|