aboutsummaryrefslogtreecommitdiff
path: root/src/comp/lib
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-12-08 14:50:47 -0800
committerGraydon Hoare <[email protected]>2010-12-08 14:50:47 -0800
commit68af077e8192a6a1b18778b97449ad695a4ecffb (patch)
treed5a7bb274b328239429bdb0c40cf1675f01c3d1a /src/comp/lib
parentFix missing case in resolve, un-XFAIL rec-tup.rs. (diff)
downloadrust-68af077e8192a6a1b18778b97449ad695a4ecffb.tar.xz
rust-68af077e8192a6a1b18778b97449ad695a4ecffb.zip
Implement binop= forms. Un-XFAIL bitwise.rs.
Diffstat (limited to 'src/comp/lib')
-rw-r--r--src/comp/lib/llvm.rs20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/comp/lib/llvm.rs b/src/comp/lib/llvm.rs
index c5236725..1fc19e5c 100644
--- a/src/comp/lib/llvm.rs
+++ b/src/comp/lib/llvm.rs
@@ -45,16 +45,16 @@ const uint LLVMX86FastcallCallConv = 65u;
// Consts for the LLVM IntPredicate type, pre-cast to uint.
// FIXME: as above.
-const uint LLVMIntEQ = 32;
-const uint LLVMIntNE = 33;
-const uint LLVMIntUGT = 34;
-const uint LLVMIntUGE = 35;
-const uint LLVMIntULT = 36;
-const uint LLVMIntULE = 37;
-const uint LLVMIntSGT = 38;
-const uint LLVMIntSGE = 39;
-const uint LLVMIntSLT = 40;
-const uint LLVMIntSLE = 41;
+const uint LLVMIntEQ = 32u;
+const uint LLVMIntNE = 33u;
+const uint LLVMIntUGT = 34u;
+const uint LLVMIntUGE = 35u;
+const uint LLVMIntULT = 36u;
+const uint LLVMIntULE = 37u;
+const uint LLVMIntSGT = 38u;
+const uint LLVMIntSGE = 39u;
+const uint LLVMIntSLT = 40u;
+const uint LLVMIntSLE = 41u;
native mod llvm = llvm_lib {