about summary refs log tree commit diff
path: root/src/librustrt/stack.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-06-17 02:51:53 +0000
committerbors <bors@rust-lang.org>2014-06-17 02:51:53 +0000
commit09967665eaa5ca3d259f0f59ef26c8d236bf47a7 (patch)
treeae450abfecbe1fdec6f583cf7cf743c35663a4c7 /src/librustrt/stack.rs
parentcc30abbcad282634fb99089eb9297e7cc4f26729 (diff)
parentb9adb6c717627ab6dcc9298b79a8d44cfe2fc616 (diff)
downloadrust-09967665eaa5ca3d259f0f59ef26c8d236bf47a7.tar.gz
rust-09967665eaa5ca3d259f0f59ef26c8d236bf47a7.zip
auto merge of #14955 : alexcrichton/rust/rollup, r=alexcrichton
Diffstat (limited to 'src/librustrt/stack.rs')
-rw-r--r--src/librustrt/stack.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustrt/stack.rs b/src/librustrt/stack.rs
index e6fa845bedc..17e939ef430 100644
--- a/src/librustrt/stack.rs
+++ b/src/librustrt/stack.rs
@@ -146,7 +146,7 @@ pub unsafe fn record_stack_bounds(stack_lo: uint, stack_hi: uint) {
         // means that if we want to perform valid FFI on windows, then we need
         // to ensure that the stack bounds are what they truly are for this
         // task. More info can be found at:
-        //   https://github.com/mozilla/rust/issues/3445#issuecomment-26114839
+        //   https://github.com/rust-lang/rust/issues/3445#issuecomment-26114839
         //
         // stack range is at TIB: %gs:0x08 (top) and %gs:0x10 (bottom)
         asm!("mov $0, %gs:0x08" :: "r"(stack_hi) :: "volatile");