[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / Mips / Fast-ISel / loadstrconst.ll
blob072d15f434c0ca2b7f5d3bb8089388b097e649f7
1 ; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel-abort=3 -mcpu=mips32r2 \
2 ; RUN:     < %s | FileCheck %s
3 ; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel-abort=3 -mcpu=mips32 \
4 ; RUN:     < %s | FileCheck %s
6 @.str = private unnamed_addr constant [6 x i8] c"hello\00", align 1
7 @s = common global i8* null, align 4
9 ; Function Attrs: nounwind
10 define void @foo() #0 {
11 entry:
12   store i8* getelementptr inbounds ([6 x i8], [6 x i8]* @.str, i32 0, i32 0), i8** @s, align 4
13   ret void
14 ; CHECK:        .ent    foo
15 ; CHECK:        lw      $[[REG1:[0-9]+]], %got($.str)(${{[0-9]+}})
16 ; CHECK:        addiu   ${{[0-9]+}}, $[[REG1]], %lo($.str)
20 attributes #0 = { nounwind "less-precise-fpmad"="false" "frame-pointer"="none" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }