about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/builder.rs
diff options
context:
space:
mode:
authorFrank Steffahn <frank.steffahn@stu.uni-kiel.de>2021-08-22 16:20:58 +0200
committerFrank Steffahn <frank.steffahn@stu.uni-kiel.de>2021-08-22 16:35:29 +0200
commitbe9d2699ca3581448097ec446fecb45ec171975e (patch)
tree522778fd0a90cacd44bcf1161ce61dd143b4ef84 /compiler/rustc_codegen_llvm/src/builder.rs
parentbf88b113eab9c36e63f8461f5849138cb60d810a (diff)
downloadrust-be9d2699ca3581448097ec446fecb45ec171975e.tar.gz
rust-be9d2699ca3581448097ec446fecb45ec171975e.zip
Fix more “a”/“an” typos
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/builder.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/builder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/builder.rs b/compiler/rustc_codegen_llvm/src/builder.rs
index 2139f9776b7..07e1b55afe5 100644
--- a/compiler/rustc_codegen_llvm/src/builder.rs
+++ b/compiler/rustc_codegen_llvm/src/builder.rs
@@ -558,7 +558,7 @@ impl BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
 
     fn range_metadata(&mut self, load: &'ll Value, range: Range<u128>) {
         if self.sess().target.arch == "amdgpu" {
-            // amdgpu/LLVM does something weird and thinks a i64 value is
+            // amdgpu/LLVM does something weird and thinks an i64 value is
             // split into a v2i32, halving the bitwidth LLVM expects,
             // tripping an assertion. So, for now, just disable this
             // optimization.