[llvm] r308272 - [x86] Add a missing triple, without which the CPU won't parse.

Chandler Carruth via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 18 01:16:32 PDT 2017


Author: chandlerc
Date: Tue Jul 18 01:16:32 2017
New Revision: 308272

URL: http://llvm.org/viewvc/llvm-project?rev=308272&view=rev
Log:
[x86] Add a missing triple, without which the CPU won't parse.

Notably, this is failing on our PPC build bots:
http://lab.llvm.org:8011/builders/clang-ppc64le-linux/builds/8338/steps/ninja%20check%201/logs/FAIL%3A%20LLVM%3A%3Apr33772.ll

Modified:
    llvm/trunk/test/CodeGen/X86/pr33772.ll

Modified: llvm/trunk/test/CodeGen/X86/pr33772.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/pr33772.ll?rev=308272&r1=308271&r2=308272&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/pr33772.ll (original)
+++ llvm/trunk/test/CodeGen/X86/pr33772.ll Tue Jul 18 01:16:32 2017
@@ -1,5 +1,7 @@
 ; RUN: not llc < %s -mcpu=skylake-avx512 2>&1 | FileCheck %s
 
+target triple = "x86_64-unknown-linux-gnu"
+
 ; make sure we don't crash if scale for gather isn't constant.
 
 ; CHECK: LLVM ERROR: Cannot select: intrinsic %llvm.x86.avx512.gather.dpi.512




More information about the llvm-commits mailing list