~ubuntu-branches/ubuntu/quantal/llvm-3.1/quantal

« back to all changes in this revision

Viewing changes to test/Assembler/vector-cmp.ll

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-04-10 23:38:33 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120410233833-5ibwguerdnr58six
Tags: 3.1~svn154439-1
* New snapshot release
* Change the soname to match what Debian is expecting
* Clean up the dh_shlibdeps call

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | grep {global.*icmp slt}
 
1
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
2
2
; PR2317
3
3
target datalayout = "e-p:32:32:32-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-f80:128:128"
4
4
target triple = "i686-apple-darwin9.2.2"
5
5
 
 
6
; CHECK: @1 = global <4 x i1> <i1 icmp slt (i32 ptrtoint (i32* @B to i32), i32 1), i1 true, i1 false, i1 true>
 
7
 
6
8
define <4 x i1> @foo(<4 x float> %a, <4 x float> %b) nounwind  {
7
9
entry:
8
 
        %cmp = fcmp olt <4 x float> %a, %b              ; <4 x i32> [#uses=1]
9
 
        ret <4 x i1> %cmp
 
10
  %cmp = fcmp olt <4 x float> %a, %b            ; <4 x i32> [#uses=1]
 
11
  ret <4 x i1> %cmp
10
12
}
11
13
 
12
14
global <4 x i1> icmp slt ( <4 x i32> <i32 1, i32 1, i32 1, i32 1>, <4 x i32>  <i32 1, i32 2, i32 1, i32 2> )
13
 
 
14
15
@B = external global i32
15
 
 
16
16
global <4 x i1> icmp slt ( <4 x i32> <i32 ptrtoint (i32 * @B to i32), i32 1, i32 1, i32 1>, <4 x i32>  <i32 1, i32 2, i32 1, i32 2> )