[llvm] r295394 - [x86] Give this test a triple so that we don't have to cope with two

Chandler Carruth via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 16 17:18:38 PST 2017


Author: chandlerc
Date: Thu Feb 16 19:18:38 2017
New Revision: 295394

URL: http://llvm.org/viewvc/llvm-project?rev=295394&view=rev
Log:
[x86] Give this test a triple so that we don't have to cope with two
different asm comment syntaxes.

Modified:
    llvm/trunk/test/CodeGen/X86/2006-01-19-ISelFoldingBug.ll

Modified: llvm/trunk/test/CodeGen/X86/2006-01-19-ISelFoldingBug.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2006-01-19-ISelFoldingBug.ll?rev=295394&r1=295393&r2=295394&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/2006-01-19-ISelFoldingBug.ll (original)
+++ llvm/trunk/test/CodeGen/X86/2006-01-19-ISelFoldingBug.ll Thu Feb 16 19:18:38 2017
@@ -1,9 +1,11 @@
 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
-; RUN: llc < %s -march=x86 -mcpu=generic | FileCheck %s
+; RUN: llc < %s | FileCheck %s
 ;
 ; Check that the isel does not fold the shld, which already folds a load
 ; and has two uses, into a store.
 
+target triple = "i686-unknown-unknown"
+
 @A = external global i32
 
 define i32 @test5(i32 %B, i8 %C) {




More information about the llvm-commits mailing list