brintos

brintos / llvm-project-archived public Read only

0
0
Text · 610 B · ed58fbd Raw
21 lines · plain
1; RUN: llvm-as < %s | llvm-dis -show-annotations | FileCheck -check-prefix=ANNOT %s2; RUN: llvm-as < %s | llvm-dis | FileCheck -check-prefix=BARE %s3; RUN: verify-uselistorder %s4 5; The bare version of this file should not have any #uses lines.6; BARE: @B =7; BARE-NOT: #uses8; BARE: }9 10@B = external global i3211; ANNOT: @B = external global i32   ; [#uses=0 type=ptr]12 13define <4 x i1> @foo(<4 x float> %a, <4 x float> %b) nounwind {14entry:15  %cmp = fcmp olt <4 x float> %a, %b              ; [#uses=1]16  ret <4 x i1> %cmp17}18 19; ANNOT: %cmp = fcmp olt <4 x float> %a, %b              ; [#uses=1 type=<4 x i1>]20 21