diff options
author | Lucas Prates <lucas.prates@arm.com> | 2020-04-22 11:31:41 +0100 |
---|---|---|
committer | Lucas Prates <lucas.prates@arm.com> | 2020-04-22 11:55:57 +0100 |
commit | 727e6fb84a3a6b5568d24edb794083ca2c750038 (patch) | |
tree | 0efacb0a48f59f65bd67aea53f47bf1729cecc07 /llvm | |
parent | 17f6e18acf5bedd505a7a2194b556fc6f559ffb4 (diff) | |
download | llvm-727e6fb84a3a6b5568d24edb794083ca2c750038.zip llvm-727e6fb84a3a6b5568d24edb794083ca2c750038.tar.gz llvm-727e6fb84a3a6b5568d24edb794083ca2c750038.tar.bz2 |
[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.
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/CodeGen/X86/pr45563.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/pr45563.ll b/llvm/test/CodeGen/X86/pr45563.ll index 0c205f6..06509a7 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 |