[llvm] r214721 - [PowerPC] Add target triple to vec_urem_const.ll test case

Ulrich Weigand ulrich.weigand at de.ibm.com
Mon Aug 4 07:55:26 PDT 2014


Author: uweigand
Date: Mon Aug  4 09:55:26 2014
New Revision: 214721

URL: http://llvm.org/viewvc/llvm-project?rev=214721&view=rev
Log:
[PowerPC] Add target triple to vec_urem_const.ll test case

This should hopefully fix build bots on other architectures.

Modified:
    llvm/trunk/test/CodeGen/PowerPC/vec_urem_const.ll

Modified: llvm/trunk/test/CodeGen/PowerPC/vec_urem_const.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/vec_urem_const.ll?rev=214721&r1=214720&r2=214721&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/PowerPC/vec_urem_const.ll (original)
+++ llvm/trunk/test/CodeGen/PowerPC/vec_urem_const.ll Mon Aug  4 09:55:26 2014
@@ -1,5 +1,8 @@
 ; RUN: llc -mcpu=pwr6 -mattr=+altivec < %s
 
+target datalayout = "e-m:e-i64:64-n32:64"
+target triple = "powerpc64le-unknown-linux-gnu"
+
 ; Common code used to replace the urem by a mulhu, and compilation would
 ; then crash since mulhu isn't supported on vector types.
 





More information about the llvm-commits mailing list