about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2019-10-12 20:40:10 +0200
committerRalf Jung <post@ralfj.de>2019-10-12 20:44:05 +0200
commit79c623f1462646da2c480b6b1c662aa9cf8afee7 (patch)
tree382f627635fe42cd1562f45a9e7555280a8edcfe
parent63af27f9ea81a71eb4ea9fb076228993f923cebb (diff)
some typography
-rw-r--r--src/librustc_codegen_llvm/attributes.rs4
-rw-r--r--src/test/codegen/unwind-extern-exports.rs4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/librustc_codegen_llvm/attributes.rs b/src/librustc_codegen_llvm/attributes.rs
index 210d6cc1696..6a36a4a50cb 100644
--- a/src/librustc_codegen_llvm/attributes.rs
+++ b/src/librustc_codegen_llvm/attributes.rs
@@ -270,10 +270,10 @@ pub fn from_fn_attrs(
         // optimize based on this!
         false
     } else if codegen_fn_attrs.flags.contains(CodegenFnAttrFlags::UNWIND) {
-        // If a specific #[unwind] attribute is present, use that
+        // If a specific #[unwind] attribute is present, use that.
         true
     } else if codegen_fn_attrs.flags.contains(CodegenFnAttrFlags::RUSTC_ALLOCATOR_NOUNWIND) {
-        // Special attribute for allocator functions, which can't unwind
+        // Special attribute for allocator functions, which can't unwind.
         false
     } else {
         let sig = cx.tcx.normalize_erasing_late_bound_regions(ty::ParamEnv::reveal_all(), &sig);
diff --git a/src/test/codegen/unwind-extern-exports.rs b/src/test/codegen/unwind-extern-exports.rs
index e7aad9ac723..ddb3a4f6b4d 100644
--- a/src/test/codegen/unwind-extern-exports.rs
+++ b/src/test/codegen/unwind-extern-exports.rs
@@ -12,8 +12,8 @@
 #[unwind(allowed)]
 pub extern fn foo_allowed() {}
 
-// "Rust" ABI (`extrn "Rust"` could be removed as all `fn` get it implicitly; we leave it
-// in for clarity.)
+// "Rust"
+// (`extern "Rust"` could be removed as all `fn` get it implicitly; we leave it in for clarity.)
 pub extern "Rust" fn bar() {}
 #[unwind(allowed)]
 pub extern "Rust" fn bar_allowed() {}