~pali/+junk/llvm-toolchain-3.7

« back to all changes in this revision

Viewing changes to test/CodeGen/Mips/mulull.ll

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2015-07-15 17:51:08 UTC
  • Revision ID: package-import@ubuntu.com-20150715175108-l8mynwovkx4zx697
Tags: upstream-3.7~+rc2
ImportĀ upstreamĀ versionĀ 3.7~+rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
; RUN: llc  -march=mipsel -mcpu=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=16
 
2
 
 
3
@iiii = global i64 5, align 8
 
4
@jjjj = global i64 6, align 8
 
5
@kkkk = common global i64 0, align 8
 
6
@.str = private unnamed_addr constant [20 x i8] c"%lld * %lld = %lld\0A\00", align 1
 
7
 
 
8
define void @test() nounwind {
 
9
entry:
 
10
  %0 = load i64, i64* @iiii, align 8
 
11
  %1 = load i64, i64* @jjjj, align 8
 
12
  %mul = mul nsw i64 %1, %0
 
13
  store i64 %mul, i64* @kkkk, align 8
 
14
; 16:   multu   ${{[0-9]+}}, ${{[0-9]+}}
 
15
; 16:   mfhi    ${{[0-9]+}}
 
16
; 16:   mult    ${{[0-9]+}}, ${{[0-9]+}}
 
17
; 16:   mflo    ${{[0-9]+}}
 
18
; 16:   mult    ${{[0-9]+}}, ${{[0-9]+}}
 
19
; 16:   mflo    ${{[0-9]+}}
 
20
  ret void
 
21
}