diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:17:27 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:17:27 +0000 |
commit | 67c32a98315f785a9ec9d531c1f571a0196c7463 (patch) | |
tree | 4abb9cbeecc7901726dd0b4a37369596c852e9ef /test/CodeGen/R600/unhandled-loop-condition-assertion.ll | |
parent | 9f61947910e6ab40de38e6b4034751ef1513200f (diff) |
Diffstat (limited to 'test/CodeGen/R600/unhandled-loop-condition-assertion.ll')
-rw-r--r-- | test/CodeGen/R600/unhandled-loop-condition-assertion.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/CodeGen/R600/unhandled-loop-condition-assertion.ll b/test/CodeGen/R600/unhandled-loop-condition-assertion.ll index e4129c511230e..9faeed6d6565c 100644 --- a/test/CodeGen/R600/unhandled-loop-condition-assertion.ll +++ b/test/CodeGen/R600/unhandled-loop-condition-assertion.ll @@ -1,11 +1,11 @@ ; REQUIRES: asserts ; XFAIL: * -; RUN: llc -O0 -verify-machineinstrs -asm-verbose=0 -march=r600 -mcpu=SI < %s | FileCheck -check-prefix=SI -check-prefix=COMMON %s +; RUN: llc -O0 -verify-machineinstrs -asm-verbose=0 -march=amdgcn -mcpu=SI < %s | FileCheck -check-prefix=SI -check-prefix=COMMON %s ; RUN: llc -O0 -verify-machineinstrs -asm-verbose=0 -march=r600 -mcpu=redwood < %s | FileCheck -check-prefix=EG -check-prefix=COMMON %s ; SI hits an assertion at -O0, evergreen hits a not implemented unreachable. -; COMMON-LABEL: @branch_true: +; COMMON-LABEL: {{^}}branch_true: define void @branch_true(i8 addrspace(1)* nocapture %main, i32 %main_stride) #0 { entry: br i1 true, label %for.end, label %for.body.lr.ph @@ -39,9 +39,9 @@ for.end: ; preds = %for.body, %entry ret void } -; COMMON-LABEL: @branch_false: +; COMMON-LABEL: {{^}}branch_false: ; SI: .text -; SI-NEXT: S_ENDPGM +; SI-NEXT: s_endpgm define void @branch_false(i8 addrspace(1)* nocapture %main, i32 %main_stride) #0 { entry: br i1 false, label %for.end, label %for.body.lr.ph @@ -75,9 +75,9 @@ for.end: ; preds = %for.body, %entry ret void } -; COMMON-LABEL: @branch_undef: +; COMMON-LABEL: {{^}}branch_undef: ; SI: .text -; SI-NEXT: S_ENDPGM +; SI-NEXT: s_endpgm define void @branch_undef(i8 addrspace(1)* nocapture %main, i32 %main_stride) #0 { entry: br i1 undef, label %for.end, label %for.body.lr.ph |