diff options
author | Igor Breger <igor.breger@intel.com> | 2017-05-21 11:13:56 +0000 |
---|---|---|
committer | Igor Breger <igor.breger@intel.com> | 2017-05-21 11:13:56 +0000 |
commit | 014fc566e715cb0b8181e058629a82be219d7cf7 (patch) | |
tree | 20f8efbd17d0a588332f2909cbb0988f29942c09 /llvm/test/CodeGen/X86/GlobalISel/add-scalar.ll | |
parent | 8bf08681346c0884f5205dd9662df92352e9b04d (diff) | |
download | bcm5719-llvm-014fc566e715cb0b8181e058629a82be219d7cf7.tar.gz bcm5719-llvm-014fc566e715cb0b8181e058629a82be219d7cf7.zip |
[GlobalISel][X86] Fix G_TRUNC instruction selection.
Updated tests with -verify-machineinstrs flag.
It fixes 3 tests failed with machine verifier enabled and listed
in PR27481
llvm-svn: 303502
Diffstat (limited to 'llvm/test/CodeGen/X86/GlobalISel/add-scalar.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/GlobalISel/add-scalar.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/GlobalISel/add-scalar.ll b/llvm/test/CodeGen/X86/GlobalISel/add-scalar.ll index 85db1c0e7e7..55c82546403 100644 --- a/llvm/test/CodeGen/X86/GlobalISel/add-scalar.ll +++ b/llvm/test/CodeGen/X86/GlobalISel/add-scalar.ll @@ -1,6 +1,6 @@ ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py -; RUN: llc -mtriple=x86_64-linux-gnu -global-isel < %s -o - | FileCheck %s --check-prefix=ALL --check-prefix=X64 -; RUN: llc -mtriple=i386-linux-gnu -global-isel < %s -o - | FileCheck %s --check-prefix=ALL --check-prefix=X32 +; RUN: llc -mtriple=x86_64-linux-gnu -global-isel -verify-machineinstrs < %s -o - | FileCheck %s --check-prefix=ALL --check-prefix=X64 +; RUN: llc -mtriple=i386-linux-gnu -global-isel -verify-machineinstrs < %s -o - | FileCheck %s --check-prefix=ALL --check-prefix=X32 define i64 @test_add_i64(i64 %arg1, i64 %arg2) { ; X64-LABEL: test_add_i64: |