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
This commit is contained in:
Matt Arsenault 2014-05-29 01:18:01 +00:00
parent 257670a79d
commit bf933548ba

View File

@ -2139,8 +2139,8 @@ multiclass DSWritePat <DS inst, ValueType vt, PatFrag frag> {
>;
def : Pat <
(frag vt:$src1, i32:$src0),
(inst 0, $src0, $src1, 0)
(frag vt:$val, i32:$ptr),
(inst 0, $ptr, $val, 0)
>;
}