[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Other / heat-colors-multigraph.ll
blobff95572dc9c5873e27704b10b74ca4214fd17714
1 ; RUN: opt %s -dot-callgraph -callgraph-multigraph -callgraph-dot-filename-prefix=%t -disable-output
2 ; RUN: FileCheck %s -input-file=%t.callgraph.dot --check-prefix=CHECK-MULTIGRAPH
3 ; RUN: opt %s -dot-callgraph -callgraph-dot-filename-prefix=%t -disable-output
4 ; RUN: FileCheck %s -input-file=%t.callgraph.dot --check-prefix=CHECK
6 ; CHECK-MULTIGRAPH: {external caller}
7 ; CHECK-NOT: {external caller}
9 define void @bar() {
10   ret void
13 define void @foo() {
14   call void @bar()
15   ret void