Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/rustc/middle/trans/alt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ fn trans_opt(bcx: block, o: opt) -> opt_result {
return single_result(rslt(bcx, *cell));
}
_ => {
return single_result(
rslt(bcx, consts::const_expr(ccx, l)));
return single_result(trans_temp_expr(bcx, l));
}
}
}
Expand Down Expand Up @@ -636,13 +635,14 @@ fn compile_submatch(bcx: block, m: match_, vals: ~[ValueRef],
}
}
lit(_) => {
test_val = Load(bcx, val);
let pty = node_id_type(bcx, pat_id);
test_val = load_if_immediate(bcx, val, pty);
kind = if ty::type_is_integral(pty) { switch }
else { compare };
}
range(_, _) => {
test_val = Load(bcx, val);
let pty = node_id_type(bcx, pat_id);
test_val = load_if_immediate(bcx, val, pty);
kind = compare;
}
}
Expand Down
51 changes: 51 additions & 0 deletions src/test/run-pass/alt-borrowed_str.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
// -*- rust -*-
fn f1(ref_string: &str) {
match ref_string {
"a" => io::println("found a"),
"b" => io::println("found b"),
_ => io::println("not found")
}
}

fn f2(ref_string: &str) {
match ref_string {
"a" => io::println("found a"),
"b" => io::println("found b"),
s => io::println(fmt!("not found (%s)", s))
}
}

fn g1(ref_1: &str, ref_2: &str) {
match (ref_1, ref_2) {
("a", "b") => io::println("found a,b"),
("b", "c") => io::println("found b,c"),
_ => io::println("not found")
}
}

fn g2(ref_1: &str, ref_2: &str) {
match (ref_1, ref_2) {
("a", "b") => io::println("found a,b"),
("b", "c") => io::println("found b,c"),
(s1, s2) => io::println(fmt!("not found (%s, %s)", s1, s2))
}
}

fn main() {
f1(@"a");
f1(~"b");
f1(&"c");
f1("d");
f2(@"a");
f2(~"b");
f2(&"c");
f2("d");
g1(@"a", @"b");
g1(~"b", ~"c");
g1(&"c", &"d");
g1("d", "e");
g2(@"a", @"b");
g2(~"b", ~"c");
g2(&"c", &"d");
g2("d", "e");
}