about summary refs log tree commit diff
path: root/src/comp/lib
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-01-29 23:27:54 -0800
committerBrian Anderson <banderson@mozilla.com>2012-01-29 23:27:54 -0800
commit0ec92a4ca716b4e051300a420bdfb8c4af32c06b (patch)
tree969481d4de9a373d9db9a92d970904041119dd96 /src/comp/lib
parentc77f1d47f8e2bf2d6ef671da2f9d31a62e4db201 (diff)
downloadrust-0ec92a4ca716b4e051300a420bdfb8c4af32c06b.tar.gz
rust-0ec92a4ca716b4e051300a420bdfb8c4af32c06b.zip
rustc: Add a missing llvm linkage type
Diffstat (limited to 'src/comp/lib')
-rw-r--r--src/comp/lib/llvm.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/comp/lib/llvm.rs b/src/comp/lib/llvm.rs
index 8238ffd279f..daa86e5be90 100644
--- a/src/comp/lib/llvm.rs
+++ b/src/comp/lib/llvm.rs
@@ -43,6 +43,7 @@ const LLVMGhostLinkage: uint = 12u;
 const LLVMCommonLinkage: uint = 13u;
 const LLVMLinkerPrivateLinkage: uint = 14u;
 const LLVMLinkerPrivateWeakLinkage: uint = 15u;
+const LLVMLinkerPrivateWeakDefAutoLinkage: uint = 16u;
 
 const LLVMZExtAttribute: uint = 1u;
 const LLVMSExtAttribute: uint = 2u;