diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2013-10-10 17:11:46 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2013-10-10 17:11:46 +0000 |
commit | 39867850462b1eefd76510e25bca4f2a51f65a70 (patch) | |
tree | 096331cb52623727bd245d53e290e62e996a08fa /test/CodeGen/R600/mul.ll | |
parent | 0f9eaaa8aa10bdb658e887782b86f03dbea79cb1 (diff) | |
download | external_llvm-39867850462b1eefd76510e25bca4f2a51f65a70.zip external_llvm-39867850462b1eefd76510e25bca4f2a51f65a70.tar.gz external_llvm-39867850462b1eefd76510e25bca4f2a51f65a70.tar.bz2 |
R600/SI: Use -verify-machineinstrs for most tests
We can't enable the verifier for tests with SI_IF and SI_ELSE, because
these instructions are always followed by a COPY which copies their
result to the next basic block. This violates the machine verifier's
rule that non-terminators can not folow terminators.
Reviewed-by: Vincent Lejeune<vljn at ovi.com>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192366 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/R600/mul.ll')
-rw-r--r-- | test/CodeGen/R600/mul.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/R600/mul.ll b/test/CodeGen/R600/mul.ll index 18a17b6..17222e7 100644 --- a/test/CodeGen/R600/mul.ll +++ b/test/CodeGen/R600/mul.ll @@ -1,5 +1,5 @@ ; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck --check-prefix=EG-CHECK %s -; RUN: llc < %s -march=r600 -mcpu=verde | FileCheck --check-prefix=SI-CHECK %s +; RUN: llc < %s -march=r600 -mcpu=verde -verify-machineinstrs | FileCheck --check-prefix=SI-CHECK %s ; mul24 and mad24 are affected |