| Age | Commit message (Collapse) | Author | Lines |
|
|
|
It's been sitting unused long enough to have bitrotted completely.
|
|
|
|
This patch changes how to specify ABI and link name of a native module.
Before:
native "cdecl" mod llvm = "rustllvm" {...}
After:
#[abi = "cdecl"]
#[link_name = "rustllvm"]
native mod llvm {...}
The old optional syntax for ABI and link name is no longer supported.
Fixes issue #547
|
|
This test calls the task pin function which has side effects and causes
other tests to lock.
|
|
Fixes issue #1161
Test-case-by: Brian Anderson <banderson@mozilla.com>
Signed-off-by: Haitao Li <lihaitao@gmail.com>
|