From 1b21d3a90ebf9b4496bd40569ebd6519e31015de Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 26 Oct 2018 11:22:43 -0700 Subject: [PATCH] Fix the path to cdsl/types.py in a comment. --- lib/codegen/src/ir/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/codegen/src/ir/types.rs b/lib/codegen/src/ir/types.rs index 1d19f5c6d7..e1dcf0d177 100644 --- a/lib/codegen/src/ir/types.rs +++ b/lib/codegen/src/ir/types.rs @@ -24,7 +24,7 @@ pub struct Type(u8); /// Not a valid type. Can't be loaded or stored. Can't be part of a SIMD vector. pub const INVALID: Type = Type(0); -/// Start of the lane types. See also `meta-python/cdsl.types.py`. +/// Start of the lane types. See also `meta-python/cdsl/types.py`. const LANE_BASE: u8 = 0x70; /// Start of the 2-lane vector types.