~ubuntu-branches/ubuntu/maverick/clamav/maverick-updates

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/X86/fast-isel-bc.ll

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-17 12:30:20 UTC
  • mfrom: (97.1.1 maverick-proposed)
  • Revision ID: james.westby@ubuntu.com-20101217123020-o02fhyzykv5z98ri
Tags: 0.96.5+dfsg-1ubuntu1.10.10.1
* Microversion update for Maverick (LP: #691414)
  - Improved database login times
  - Expanded use of new bytecode signatures
  - Other bugfixes/improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
; RUN: llc < %s -O0 -march=x86-64 -mattr=+mmx | FileCheck %s
2
 
; PR4684
3
 
 
4
 
target datalayout =
5
 
"e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
6
 
target triple = "x86_64-apple-darwin9.8"
7
 
 
8
 
declare void @func2(<1 x i64>)
9
 
 
10
 
define void @func1() nounwind {
11
 
 
12
 
; This isn't spectacular, but it's MMX code at -O0...
13
 
; CHECK: movl $2, %eax
14
 
; CHECK: movd %rax, %mm0
15
 
; CHECK: movd %mm0, %rdi
16
 
 
17
 
        call void @func2(<1 x i64> <i64 2>)
18
 
        ret void
19
 
}