summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/Mips
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-10-05 15:52:08 +0000
committerDan Gohman <gohman@apple.com>2009-10-05 15:52:08 +0000
commit2728569a38a2171248f2d818f19ce5ae25f09423 (patch)
tree9d97b62596e3648966eac913b6609de90b750722 /llvm/lib/Target/Mips
parent774149a878b3a3e4439d9c340298c3d8775de85e (diff)
downloadbcm5719-llvm-2728569a38a2171248f2d818f19ce5ae25f09423.tar.gz
bcm5719-llvm-2728569a38a2171248f2d818f19ce5ae25f09423.zip
Remove explicit enum integer values. They don't appear to be needed, and
they make it less convenient to add new entries. llvm-svn: 83308
Diffstat (limited to 'llvm/lib/Target/Mips')
-rw-r--r--llvm/lib/Target/Mips/MipsInstrInfo.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/Mips/MipsInstrInfo.h b/llvm/lib/Target/Mips/MipsInstrInfo.h
index 2f273ebce88..249d3de3b70 100644
--- a/llvm/lib/Target/Mips/MipsInstrInfo.h
+++ b/llvm/lib/Target/Mips/MipsInstrInfo.h
@@ -139,25 +139,25 @@ namespace MipsII {
//===------------------------------------------------------------------===//
// Mips Specific MachineOperand flags.
- MO_NO_FLAG = 0,
+ MO_NO_FLAG,
/// MO_GOT - Represents the offset into the global offset table at which
/// the address the relocation entry symbol resides during execution.
- MO_GOT = 1,
+ MO_GOT,
/// MO_GOT_CALL - Represents the offset into the global offset table at
/// which the address of a call site relocation entry symbol resides
/// during execution. This is different from the above since this flag
/// can only be present in call instructions.
- MO_GOT_CALL = 2,
+ MO_GOT_CALL,
/// MO_GPREL - Represents the offset from the current gp value to be used
/// for the relocatable object file being produced.
- MO_GPREL = 3,
+ MO_GPREL,
/// MO_ABS_HILO - Represents the hi or low part of an absolute symbol
/// address.
- MO_ABS_HILO = 4
+ MO_ABS_HILO
};
}
OpenPOWER on IntegriCloud