about summary refs log tree commit diff
path: root/src/librustrt
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2014-06-16 16:07:34 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-16 18:16:36 -0700
commitf4ae8a83f9e56a7f16a5f0a25d22c74063e2fb5e (patch)
tree095cf0cff432afd4cb528875690191fabb10df1a /src/librustrt
parente1971dd35a679ff8fc438f7ccb8d6754de472d6e (diff)
downloadrust-f4ae8a83f9e56a7f16a5f0a25d22c74063e2fb5e.tar.gz
rust-f4ae8a83f9e56a7f16a5f0a25d22c74063e2fb5e.zip
Update repo location
Diffstat (limited to 'src/librustrt')
-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");