From 6b898beb8e6bf5739d43c1d64646264afc595de8 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Wed, 2 Aug 2017 00:28:10 +0000 Subject: X86: Do not use llc -march in tests. `llc -march` is problematic because it only switches the target architecture, but leaves the operating system unchanged. This occasionally leads to indeterministic tests because the OS from LLVM_DEFAULT_TARGET_TRIPLE is used. However we can simply always use `llc -mtriple` instead. This changes all the tests to do this to avoid people using -march when they copy and paste parts of tests. See also the discussion in https://reviews.llvm.org/D35287 llvm-svn: 309774 --- llvm/test/CodeGen/X86/2009-04-scale.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/test/CodeGen/X86/2009-04-scale.ll') diff --git a/llvm/test/CodeGen/X86/2009-04-scale.ll b/llvm/test/CodeGen/X86/2009-04-scale.ll index 1fc5f2b234f..4238d6eb061 100644 --- a/llvm/test/CodeGen/X86/2009-04-scale.ll +++ b/llvm/test/CodeGen/X86/2009-04-scale.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -march=x86 -mtriple=i386-unknown-linux-gnu +; RUN: llc < %s -mtriple=i386-unknown-linux-gnu ; PR3995 %struct.vtable = type { i32 (...)** } -- cgit v1.2.3