diff options
author | Vincent Lejeune <vljn@ovi.com> | 2013-04-30 00:13:39 +0000 |
---|---|---|
committer | Vincent Lejeune <vljn@ovi.com> | 2013-04-30 00:13:39 +0000 |
commit | 631591e6f3e5119d8a8b1c853279bc4ac7ace4a0 (patch) | |
tree | 9ddfd9cbe4a94173530cc4ed76fd44b22948c4a9 /test/CodeGen | |
parent | 7d8ea50b93916b3dde07cc017d738b3fff43d3c7 (diff) | |
download | external_llvm-631591e6f3e5119d8a8b1c853279bc4ac7ace4a0.zip external_llvm-631591e6f3e5119d8a8b1c853279bc4ac7ace4a0.tar.gz external_llvm-631591e6f3e5119d8a8b1c853279bc4ac7ace4a0.tar.bz2 |
R600: Add FetchInst bit to instruction defs to denote vertex/tex instructions
v2[Vincent Lejeune]: Split FetchInst into usesTextureCache/usesVertexCache
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180755 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/R600/loop-address.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/R600/loop-address.ll b/test/CodeGen/R600/loop-address.ll index dc9295e..a3986b2 100644 --- a/test/CodeGen/R600/loop-address.ll +++ b/test/CodeGen/R600/loop-address.ll @@ -1,10 +1,10 @@ ;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s -;CHECK: TEX +;CHECK: VTX ;CHECK: ALU_PUSH ;CHECK: JUMP @4 ;CHECK: ELSE @16 -;CHECK: TEX +;CHECK: VTX ;CHECK: LOOP_START_DX10 @15 ;CHECK: LOOP_BREAK @14 ;CHECK: POP @16 |