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/fp64_to_sint.ll | |
parent | 0f9eaaa8aa10bdb658e887782b86f03dbea79cb1 (diff) |
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/fp64_to_sint.ll')
-rw-r--r-- | test/CodeGen/R600/fp64_to_sint.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/R600/fp64_to_sint.ll b/test/CodeGen/R600/fp64_to_sint.ll index 42f9f3403a3..185e21c9caa 100644 --- a/test/CodeGen/R600/fp64_to_sint.ll +++ b/test/CodeGen/R600/fp64_to_sint.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -march=r600 -mcpu=SI | FileCheck %s --check-prefix=CHECK +; RUN: llc < %s -march=r600 -mcpu=SI -verify-machineinstrs | FileCheck %s --check-prefix=CHECK ; CHECK: @fp64_to_sint ; CHECK: V_CVT_I32_F64_e32 |