mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
c957debf0b
llvm-svn: 358878
11 lines
391 B
LLVM
11 lines
391 B
LLVM
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
|
|
; RUN: opt < %s -S -passes='loop-vectorize<interleave-forced-only;vectorize-forced-only>' 2>&1 | FileCheck %s
|
|
; RUN: opt < %s -S -passes='loop-vectorize<no-interleave-forced-only;no-vectorize-forced-only>' 2>&1 | FileCheck %s
|
|
|
|
; Dummy test to check LoopVectorize options.
|
|
; CHECK-LABEL: dummy
|
|
define void @dummy() {
|
|
ret void
|
|
}
|