diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-10-10 18:51:33 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-10-10 18:51:33 +0000 |
commit | ba0bc4f522a26c77110f1b2c94571e03dac29d69 (patch) | |
tree | d4c808b680b748f3b0034ab73999b023e795830d /llvm | |
parent | 391214aa3af4aa1bb57e41f1160ab5b2a8b712c8 (diff) | |
download | bcm5719-llvm-ba0bc4f522a26c77110f1b2c94571e03dac29d69.tar.gz bcm5719-llvm-ba0bc4f522a26c77110f1b2c94571e03dac29d69.zip |
Mark the standard pseudos as isPseudo = 1.
The difference between isPseudo and isCodeGenOnly is a bit murky, but
isCodeGenOnly should eventually go away. It is used for instructions
that are clones of real instructions with slightly different properties.
The standard pseudo-instructions never mirror real instructions, so they
are definitely in the isPseudo category.
llvm-svn: 141567
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/Target/Target.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Target/Target.td b/llvm/include/llvm/Target/Target.td index b709b873f9d..aa9a4f5af18 100644 --- a/llvm/include/llvm/Target/Target.td +++ b/llvm/include/llvm/Target/Target.td @@ -586,7 +586,7 @@ class InstrInfo { // Standard Pseudo Instructions. // This list must match TargetOpcodes.h and CodeGenTarget.cpp. // Only these instructions are allowed in the TargetOpcode namespace. -let isCodeGenOnly = 1, Namespace = "TargetOpcode" in { +let isCodeGenOnly = 1, isPseudo = 1, Namespace = "TargetOpcode" in { def PHI : Instruction { let OutOperandList = (outs); let InOperandList = (ins variable_ops); |