From: Faisal Vali Date: Mon, 15 May 2017 02:56:02 +0000 (+0000) Subject: Silence buildbots by tweaking an IR codegen test to be less specific w register names. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=756407073d3262cc2f225ae69f419cdfc081c734;p=clang Silence buildbots by tweaking an IR codegen test to be less specific w register names. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@303030 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/vla.cpp b/test/CodeGenCXX/vla.cpp index 36008ca21f..957a9f9568 100644 --- a/test/CodeGenCXX/vla.cpp +++ b/test/CodeGenCXX/vla.cpp @@ -104,7 +104,7 @@ void test3(int b, int c) { //CHECK-NEXT: [[VLA_SIZEOF_DIM2:%.*]] = mul nuw i64 4, [[VLA_DIM2_PRE]] //CHECK-NEXT: [[VLA_NUM_ELEMENTS:%.*]] = udiv i64 [[VLA_SIZEOF]], [[VLA_SIZEOF_DIM2]] //CHECK-NEXT: [[VLA_END_INDEX:%.*]] = mul nsw i64 [[VLA_NUM_ELEMENTS]], [[VLA_DIM2_PRE]] - //CHECK-NEXT: [[VLA_END_PTR:%.*]] = getelementptr inbounds i32, i32* %7, i64 [[VLA_END_INDEX]] + //CHECK-NEXT: [[VLA_END_PTR:%.*]] = getelementptr inbounds i32, i32* {{%.*}}, i64 [[VLA_END_INDEX]] //CHECK-NEXT: store i32* [[VLA_END_PTR]], i32** %__end for (auto &d : varr) 0;