[llvm] r282053 - llvm/test/CodeGen/NVPTX/zero-cs.ll: Relax an expression to match in -Asserts.
NAKAMURA Takumi via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 20 21:43:11 PDT 2016
Author: chapuni
Date: Tue Sep 20 23:43:11 2016
New Revision: 282053
URL: http://llvm.org/viewvc/llvm-project?rev=282053&view=rev
Log:
llvm/test/CodeGen/NVPTX/zero-cs.ll: Relax an expression to match in -Asserts.
LLVM ERROR: Cannot select: 0x3607bf0: i32 = ExternalSymbol'__powidf2'
Modified:
llvm/trunk/test/CodeGen/NVPTX/zero-cs.ll
Modified: llvm/trunk/test/CodeGen/NVPTX/zero-cs.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/NVPTX/zero-cs.ll?rev=282053&r1=282052&r2=282053&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/NVPTX/zero-cs.ll (original)
+++ llvm/trunk/test/CodeGen/NVPTX/zero-cs.ll Tue Sep 20 23:43:11 2016
@@ -1,7 +1,7 @@
; RUN: not llc < %s -march=nvptx 2>&1 | FileCheck %s
; used to seqfault and now fails with a "Cannot select"
-; CHECK: LLVM ERROR: Cannot select: t7: i32 = ExternalSymbol'__powidf2'
+; CHECK: LLVM ERROR: Cannot select: {{t7|0x[0-9a-f]+}}: i32 = ExternalSymbol'__powidf2'
define double @powi() {
%1 = call double @llvm.powi.f64(double 1.000000e+00, i32 undef)
ret double %1
More information about the llvm-commits
mailing list