From bf933548ba94e8029aa3c0d12b8e6a551fc32322 Mon Sep 17 00:00:00 2001 From: Matt Arsenault Date: Thu, 29 May 2014 01:18:01 +0000 Subject: [PATCH] R600/SI: Fix pattern variable names. These are confusing enough since the order swaps, so give them more useful names. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209787 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/R600/SIInstructions.td | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Target/R600/SIInstructions.td b/lib/Target/R600/SIInstructions.td index 500fa7894c2..e64a1b548ea 100644 --- a/lib/Target/R600/SIInstructions.td +++ b/lib/Target/R600/SIInstructions.td @@ -2139,8 +2139,8 @@ multiclass DSWritePat { >; def : Pat < - (frag vt:$src1, i32:$src0), - (inst 0, $src0, $src1, 0) + (frag vt:$val, i32:$ptr), + (inst 0, $ptr, $val, 0) >; } -- 2.34.1