Home | History | Annotate | Download | only in Mips
      1 ; DISABLED: llc -filetype=obj -mtriple mipsel-unknown-linux %s -o - | llvm-readobj -s -sd | FileCheck %s
      2 ; RUN: false
      3 ; XFAIL: *
      4 
      5 ; FIXME: use assembler instead of llc when it becomes available.
      6 
      7 @string1 = internal global [11 x i8] c"aaaaaaaaaa\00", align 1
      8 @string2 = internal global [10 x i8] c"aaaa\00bbbb\00", align 1
      9 
     10 define i32 @foo1(i32 %n) nounwind readonly {
     11 entry:
     12 ; check that the immediate fields of lwl and lwr are three apart.
     13 ; 8841000e        lwl     at,14(v0)
     14 ; 9841000b        lwr     at,11(v0)
     15 
     16 ; CHECK:          SectionData (
     17 ; CHECK:            0000: 00001C3C 00009C27 21E09903 0000828F
     18 ; CHECK-NEXT:       0010: 0E004188 0B004198
     19 
     20   %call = tail call i32 @memcmp(i8* getelementptr inbounds ([11 x i8], [11 x i8]* @string1, i32 0, i32 0), i8* getelementptr inbounds ([10 x i8], [10 x i8]* @string2, i32 0, i32 0), i32 4) nounwind readonly
     21   %cmp = icmp eq i32 %call, 0
     22   %conv = zext i1 %cmp to i32
     23   ret i32 %conv
     24 }
     25 
     26 declare i32 @memcmp(i8* nocapture, i8* nocapture, i32) nounwind readonly
     27