From: Serguei Katkov Date: Mon, 22 Apr 2019 09:53:26 +0000 (+0000) Subject: [NewPM] Add dummy Test for LoopVectorize option parsing. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a277430f59eadd28eb6140ea31e39025fa8fd179;p=llvm [NewPM] Add dummy Test for LoopVectorize option parsing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@358878 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/LoopVectorize/loop-vect-option.ll b/test/Transforms/LoopVectorize/loop-vect-option.ll new file mode 100644 index 00000000000..4e38b534d0f --- /dev/null +++ b/test/Transforms/LoopVectorize/loop-vect-option.ll @@ -0,0 +1,10 @@ +target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" + +; RUN: opt < %s -S -passes='loop-vectorize' 2>&1 | FileCheck %s +; RUN: opt < %s -S -passes='loop-vectorize' 2>&1 | FileCheck %s + +; Dummy test to check LoopVectorize options. +; CHECK-LABEL: dummy +define void @dummy() { + ret void +}