1; RUN: llc -march=mipsel < %s | FileCheck %s -check-prefix=32 2; RUN: llc -march=mipsel -mattr=+fp64 < %s | FileCheck %s -check-prefix=32 3; RUN: llc -march=mips64el -mcpu=mips3 < %s | FileCheck %s -check-prefix=64 4; RUN: llc -march=mips64el -mcpu=mips4 < %s | FileCheck %s -check-prefix=64 5; RUN: llc -march=mips64el -mcpu=mips64 < %s | FileCheck %s -check-prefix=64 6 7; 32: addiu $sp, $sp, -8 8; 64: daddiu $sp, $sp, -16 9 10define i32 @foo1() #0 { 11entry: 12 ret i32 14 13} 14 15attributes #0 = { "no-frame-pointer-elim"="true" } 16