[llvm] r303025 - Fix two tests that weren't correctly copied.

Daniel Jasper via llvm-commits llvm-commits at lists.llvm.org
Sun May 14 15:07:50 PDT 2017


Author: djasper
Date: Sun May 14 17:07:50 2017
New Revision: 303025

URL: http://llvm.org/viewvc/llvm-project?rev=303025&view=rev
Log:
Fix two tests that weren't correctly copied.

One didn't correctly fine the regex variable, the other still had a RUN
line for FNOBUILTIN-checks, which weren't copied to the file.

Modified:
    llvm/trunk/test/Analysis/BasicAA/intrinsics-arm.ll
    llvm/trunk/test/Transforms/ConstProp/sse.ll

Modified: llvm/trunk/test/Analysis/BasicAA/intrinsics-arm.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/BasicAA/intrinsics-arm.ll?rev=303025&r1=303024&r2=303025&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/BasicAA/intrinsics-arm.ll (original)
+++ llvm/trunk/test/Analysis/BasicAA/intrinsics-arm.ll Sun May 14 17:07:50 2017
@@ -10,7 +10,7 @@ target datalayout = "e-p:32:32:32-i1:8:3
 ; CHECK:      define <8 x i16> @test1(i8* %p, <8 x i16> %y) {
 ; CHECK-NEXT: entry:
 ; CHECK-NEXT:   %q = getelementptr i8, i8* %p, i64 16
-; CHECK-NEXT:   %a = call <8 x i16> @llvm.arm.neon.vld1.v8i16.p0i8(i8* %p, i32 16) [[ATTR]]
+; CHECK-NEXT:   %a = call <8 x i16> @llvm.arm.neon.vld1.v8i16.p0i8(i8* %p, i32 16) [[ATTR:[0-9]+]]
 ; CHECK-NEXT:   call void @llvm.arm.neon.vst1.p0i8.v8i16(i8* %q, <8 x i16> %y, i32 16)
 ; CHECK-NEXT:   %c = add <8 x i16> %a, %a
 define <8 x i16> @test1(i8* %p, <8 x i16> %y) {

Modified: llvm/trunk/test/Transforms/ConstProp/sse.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/ConstProp/sse.ll?rev=303025&r1=303024&r2=303025&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/ConstProp/sse.ll (original)
+++ llvm/trunk/test/Transforms/ConstProp/sse.ll Sun May 14 17:07:50 2017
@@ -1,5 +1,4 @@
 ; RUN: opt < %s -constprop -S | FileCheck %s
-; RUN: opt < %s -constprop -disable-simplify-libcalls -S | FileCheck %s --check-prefix=FNOBUILTIN
 ; REQUIRES: x86
 
 define i1 @test_sse_cvts_exact() nounwind readnone {




More information about the llvm-commits mailing list