brintos

brintos / llvm-project-archived public Read only

0
0
Text · 582 B · 66bad73 Raw
24 lines · plain
1; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis2; RUN: verify-uselistorder %s3target 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"4target triple = "x86_64-apple-darwin8"5	%struct.bar = type { i32 }6	%struct.foo = type { i32 }7 8define i32 @"Func64"(ptr %F) {9entry:10	ret i32 111}12 13define i32 @Func64(ptr %B) {14entry:15	ret i32 016}17 18define i32 @test() {19entry:20	%tmp = tail call i32 @"Func64"( ptr null )		; <i32> [#uses=0]21	%tmp1 = tail call i32 @Func64( ptr null )		; <i32> [#uses=0]22	ret i32 undef23}24