2012-05-12 05:25:16 +02:00
|
|
|
; DISABLE: llc -march=mipsel < %s | FileCheck %s
|
|
|
|
; RUN: false
|
|
|
|
; XFAIL: *
|
2011-09-02 01:07:08 +02:00
|
|
|
|
2011-08-12 00:42:31 +02:00
|
|
|
; CHECK: .set macro
|
2012-03-28 02:25:01 +02:00
|
|
|
; CHECK: .set at
|
2011-08-12 00:42:31 +02:00
|
|
|
; CHECK-NEXT: .cprestore
|
2012-03-28 02:25:01 +02:00
|
|
|
; CHECK: .set noat
|
2011-08-12 00:42:31 +02:00
|
|
|
; CHECK-NEXT: .set nomacro
|
|
|
|
|
|
|
|
%struct.S = type { [16384 x i32] }
|
|
|
|
|
|
|
|
define void @foo2() nounwind {
|
|
|
|
entry:
|
|
|
|
%s = alloca %struct.S, align 4
|
|
|
|
call void @foo1(%struct.S* byval %s)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @foo1(%struct.S* byval)
|