You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
706 B
22 lines
706 B
; REQUIRES: x86
|
|
; RUN: llvm-as -o %t.obj %s
|
|
; RUN: lld-link /out:%t.exe /entry:foo /subsystem:console %t.obj
|
|
|
|
target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-pc-windows-msvc"
|
|
|
|
; Define fltused, since we don't link against the MS C runtime but are
|
|
; using floats.
|
|
@_fltused = dllexport global i32 0, align 4
|
|
|
|
define void @foo(<4 x i32>* %p, <4 x float>* %q, i1 %t) nounwind {
|
|
entry:
|
|
br label %loop
|
|
loop:
|
|
store <4 x i32><i32 1073741824, i32 1073741824, i32 1073741824, i32 1073741824>, <4 x i32>* %p
|
|
store <4 x float><float 2.0, float 2.0, float 2.0, float 2.0>, <4 x float>* %q
|
|
br i1 %t, label %loop, label %ret
|
|
ret:
|
|
ret void
|
|
}
|