diff options
author | Matthias Braun <matze@braunis.de> | 2017-12-04 20:08:28 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2017-12-04 20:08:28 +0000 |
commit | de4c0ae2055824cd0d861966cfc543e02a97b211 (patch) | |
tree | 912db45fc802db9644451b8868b6fbcfe927d857 | |
parent | e911a5d356c7de71cc45b45243c3c8f5c9969888 (diff) | |
download | bcm5719-llvm-de4c0ae2055824cd0d861966cfc543e02a97b211.tar.gz bcm5719-llvm-de4c0ae2055824cd0d861966cfc543e02a97b211.zip |
Add missing triple args to tests
llvm-svn: 319686
-rw-r--r-- | llvm/test/CodeGen/X86/verifier-phi-fail0.mir | 2 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/verifier-phi.mir | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/verifier-phi-fail0.mir b/llvm/test/CodeGen/X86/verifier-phi-fail0.mir index 655cd2ab7c7..482c2c85d15 100644 --- a/llvm/test/CodeGen/X86/verifier-phi-fail0.mir +++ b/llvm/test/CodeGen/X86/verifier-phi-fail0.mir @@ -1,4 +1,4 @@ -# RUN: not llc -o - %s -verify-machineinstrs -run-pass=none 2>&1 | FileCheck %s +# RUN: not llc -o - %s -mtriple=x86_64-- -verify-machineinstrs -run-pass=none 2>&1 | FileCheck %s --- # CHECK: Bad machine code: PHI operand is not live-out from predecessor # CHECK: - function: func0 diff --git a/llvm/test/CodeGen/X86/verifier-phi.mir b/llvm/test/CodeGen/X86/verifier-phi.mir index 1a2f13c3d4f..78060dc0e73 100644 --- a/llvm/test/CodeGen/X86/verifier-phi.mir +++ b/llvm/test/CodeGen/X86/verifier-phi.mir @@ -1,4 +1,4 @@ -# RUN: llc -o - %s -verify-machineinstrs -run-pass=none | FileCheck %s +# RUN: llc -o - %s -mtriple=x86_64-- -verify-machineinstrs -run-pass=none | FileCheck %s # This should cleanly pass the machine verifier --- # CHECK-LABEL: name: func0 |