summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Kleckner <rnk@google.com>2015-08-05 22:27:08 +0000
committerReid Kleckner <rnk@google.com>2015-08-05 22:27:08 +0000
commit10cac7a190ef21a75e832a834f6b7d22d13b70ad (patch)
tree00b5cf0eb613c28ae5a08459d0b6491ddea02beb
parent12d2c12023f8ad582abf6c60013c81b7239124c4 (diff)
downloadbcm5719-llvm-10cac7a190ef21a75e832a834f6b7d22d13b70ad.tar.gz
bcm5719-llvm-10cac7a190ef21a75e832a834f6b7d22d13b70ad.zip
Fix Windows test failure with triple instead of using the native OS
llvm-svn: 244159
-rw-r--r--llvm/test/CodeGen/X86/atomic_mi.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/atomic_mi.ll b/llvm/test/CodeGen/X86/atomic_mi.ll
index 8ea72fa5f27..631c5fbb89a 100644
--- a/llvm/test/CodeGen/X86/atomic_mi.ll
+++ b/llvm/test/CodeGen/X86/atomic_mi.ll
@@ -1,6 +1,6 @@
-; RUN: llc < %s -march=x86-64 -verify-machineinstrs | FileCheck %s --check-prefix X64
-; RUN: llc < %s -march=x86 -verify-machineinstrs | FileCheck %s --check-prefix X32
-; RUN: llc < %s -march=x86-64 -mattr=slow-incdec -verify-machineinstrs | FileCheck %s --check-prefix SLOW_INC
+; RUN: llc < %s -mtriple=x86_64-unknown-unknown -verify-machineinstrs | FileCheck %s --check-prefix X64
+; RUN: llc < %s -mtriple=i686-unknown-unknown -verify-machineinstrs | FileCheck %s --check-prefix X32
+; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=slow-incdec -verify-machineinstrs | FileCheck %s --check-prefix SLOW_INC
; This file checks that atomic (non-seq_cst) stores of immediate values are
; done in one mov instruction and not 2. More precisely, it makes sure that the
OpenPOWER on IntegriCloud