summaryrefslogtreecommitdiff
path: root/lib/Target/SystemZ/SystemZ.h
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-07-16 14:19:54 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-07-16 14:19:54 +0000
commit10c086cd776f94c75e996f8d56165b6bdd439241 (patch)
tree4557e2969f49b47d60522fb2e5abef939d84a1a9 /lib/Target/SystemZ/SystemZ.h
parentae53567de16cae164f98d2b06317e062d96c728a (diff)
downloadllvm-10c086cd776f94c75e996f8d56165b6bdd439241.tar.gz
llvm-10c086cd776f94c75e996f8d56165b6bdd439241.tar.bz2
llvm-10c086cd776f94c75e996f8d56165b6bdd439241.tar.xz
Implement all comparisons
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76017 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/SystemZ.h')
-rw-r--r--lib/Target/SystemZ/SystemZ.h20
1 files changed, 14 insertions, 6 deletions
diff --git a/lib/Target/SystemZ/SystemZ.h b/lib/Target/SystemZ/SystemZ.h
index 048dcea8d0..cfba487889 100644
--- a/lib/Target/SystemZ/SystemZ.h
+++ b/lib/Target/SystemZ/SystemZ.h
@@ -26,12 +26,20 @@ namespace llvm {
// SystemZ specific condition code. These correspond to SYSTEMZ_*_COND in
// SystemZInstrInfo.td. They must be kept in synch.
enum CondCodes {
- E = 0,
- NE = 1,
- H = 2,
- L = 3,
- HE = 4,
- LE = 5
+ O = 0,
+ H = 1,
+ NLE = 2,
+ L = 3,
+ NHE = 4,
+ LH = 5,
+ NE = 6,
+ E = 7,
+ NLH = 8,
+ HE = 9,
+ NL = 10,
+ LE = 11,
+ NH = 12,
+ NO = 13
};
}