about summary refs log tree commit diff
path: root/src/comp/lib/llvm.rs
diff options
context:
space:
mode:
authorRafael Ávila de Espíndola <respindola@mozilla.com>2011-05-24 13:47:27 -0400
committerRafael Ávila de Espíndola <respindola@mozilla.com>2011-06-08 14:08:24 -0400
commit698022d351e552b51cd9cca878bdc0de3de05b8c (patch)
tree36f0cc07c4f2b66ad914c5022c01b3706c937973 /src/comp/lib/llvm.rs
parentd360c481e8bd6079eb92b155a7c5451fc8bd35f6 (diff)
downloadrust-698022d351e552b51cd9cca878bdc0de3de05b8c.tar.gz
rust-698022d351e552b51cd9cca878bdc0de3de05b8c.zip
Update rust to build with newer llvm versions.
Diffstat (limited to 'src/comp/lib/llvm.rs')
-rw-r--r--src/comp/lib/llvm.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/lib/llvm.rs b/src/comp/lib/llvm.rs
index 0de35b9f006..505e07e3f3f 100644
--- a/src/comp/lib/llvm.rs
+++ b/src/comp/lib/llvm.rs
@@ -88,6 +88,7 @@ const uint LLVMNoImplicitFloatAttribute = 8388608u;
 const uint LLVMNakedAttribute = 16777216u;
 const uint LLVMInlineHintAttribute = 33554432u;
 const uint LLVMStackAttribute = 469762048u;     // 7 << 26
+const uint LLVMUWTableAttribute = 1073741824u; // 1 << 30
 
 
 // Consts for the LLVM IntPredicate type, pre-cast to uint.
@@ -813,7 +814,6 @@ native mod llvm = llvm_lib {
                                    Bool UnitAtATime,
                                    Bool UnrollLoops,
                                    Bool SimplifyLibCalls,
-                                   Bool HaveExceptions,
                                    uint InliningThreshold);
 
     /** Destroys a memory buffer. */