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
2 changes: 1 addition & 1 deletion tests/codegen-llvm/fatptr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub trait T {}

// CHECK-LABEL: @copy_fat_ptr
#[no_mangle]
pub fn copy_fat_ptr(x: &T) {
pub fn copy_fat_ptr(x: &dyn T) {
// CHECK-NOT: extractvalue
let x2 = x;
}
12 changes: 1 addition & 11 deletions tests/codegen-llvm/reg-struct-return.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,17 +90,7 @@ pub struct FooFloat3 {
}

pub mod tests {
use Foo;
use Foo1;
use Foo2;
use Foo3;
use Foo4;
use Foo5;
use FooFloat1;
use FooFloat2;
use FooFloat3;
use FooOversize1;
use FooOversize2;
use super::*;

// ENABLED: i64 @f1()
// DISABLED: void @f1(ptr {{.*}}sret
Expand Down
Loading