[llvm] 727e6fb - [NFC][llvm][X86] Adding missing -mtiple to X86 test.

Lucas Prates via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 22 03:56:07 PDT 2020


Author: Lucas Prates
Date: 2020-04-22T11:55:57+01:00
New Revision: 727e6fb84a3a6b5568d24edb794083ca2c750038

URL: https://github.com/llvm/llvm-project/commit/727e6fb84a3a6b5568d24edb794083ca2c750038
DIFF: https://github.com/llvm/llvm-project/commit/727e6fb84a3a6b5568d24edb794083ca2c750038.diff

LOG: [NFC][llvm][X86] Adding missing -mtiple to X86 test.

The modified test was missing the specification of the intended triple
in its run line, assuming X86 is the default.

Added: 
    

Modified: 
    llvm/test/CodeGen/X86/pr45563.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/X86/pr45563.ll b/llvm/test/CodeGen/X86/pr45563.ll
index 0c205f665b82..06509a77ca76 100644
--- a/llvm/test/CodeGen/X86/pr45563.ll
+++ b/llvm/test/CodeGen/X86/pr45563.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -O3 -mattr=avx | FileCheck %s
+; RUN: llc < %s -O3 -mattr=avx -mtriple=x86_64-unknown-unknown | FileCheck %s
 
 ; Bug 45563:
 ; The LowerMLOAD() method AVX masked load branch should


        


More information about the llvm-commits mailing list