Use getEdgeProbability() instead of getEdgeWeight() in BFI and remove getEdgeWeight...
[oota-llvm.git] / test / Assembler / 2007-05-21-Escape.ll
1 ; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis
2 ; RUN: verify-uselistorder %s
3 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64"
4 target triple = "x86_64-apple-darwin8"
5         %struct.bar = type { i32 }
6         %struct.foo = type { i32 }
7
8 define i32 @"\ 1Func64"(%struct.bar* %F) {
9 entry:
10         ret i32 1
11 }
12
13 define i32 @Func64(%struct.bar* %B) {
14 entry:
15         ret i32 0
16 }
17
18 define i32 @test() {
19 entry:
20         %tmp = tail call i32 @"\ 1Func64"( %struct.bar* null )            ; <i32> [#uses=0]
21         %tmp1 = tail call i32 @Func64( %struct.bar* null )              ; <i32> [#uses=0]
22         ret i32 undef
23 }