diff options
| author | Dan Gohman <gohman@apple.com> | 2009-10-29 18:10:34 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-10-29 18:10:34 +0000 |
| commit | 453d64c9f5d128787ea6bc8ef7493bdd718e799c (patch) | |
| tree | 6e1bdfd631d05061cc655800cf45b75b4ac78cf6 /llvm/lib/Target/Alpha | |
| parent | ba91b89711c5dde1f52817792bed3efa5f54580b (diff) | |
| download | bcm5719-llvm-453d64c9f5d128787ea6bc8ef7493bdd718e799c.tar.gz bcm5719-llvm-453d64c9f5d128787ea6bc8ef7493bdd718e799c.zip | |
Rename usesCustomDAGSchedInserter to usesCustomInserter, and update a
bunch of associated comments, because it doesn't have anything to do
with DAGs or scheduling. This is another step in decoupling MachineInstr
emitting from scheduling.
llvm-svn: 85517
Diffstat (limited to 'llvm/lib/Target/Alpha')
| -rw-r--r-- | llvm/lib/Target/Alpha/AlphaInstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaInstrInfo.td b/llvm/lib/Target/Alpha/AlphaInstrInfo.td index 3b98206e5b1..81e1fb7c893 100644 --- a/llvm/lib/Target/Alpha/AlphaInstrInfo.td +++ b/llvm/lib/Target/Alpha/AlphaInstrInfo.td @@ -164,7 +164,7 @@ def MEMLABEL : PseudoInstAlpha<(outs), (ins s64imm:$i, s64imm:$j, s64imm:$k, s64 "LSMARKER$$$i$$$j$$$k$$$m:", [], s_pseudo>; -let usesCustomDAGSchedInserter = 1 in { // Expanded by the scheduler. +let usesCustomInserter = 1 in { // Expanded after instruction selection. def CAS32 : PseudoInstAlpha<(outs GPRC:$dst), (ins GPRC:$ptr, GPRC:$cmp, GPRC:$swp), "", [(set GPRC:$dst, (atomic_cmp_swap_32 GPRC:$ptr, GPRC:$cmp, GPRC:$swp))], s_pseudo>; def CAS64 : PseudoInstAlpha<(outs GPRC:$dst), (ins GPRC:$ptr, GPRC:$cmp, GPRC:$swp), "", |

