Skip to content

Commit 714b401

Browse files
committed
Make test 32bit safe
1 parent 26fee83 commit 714b401

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/SILOptimizer/specialize_no_definition.sil

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ sil_stage canonical
2828
sil hidden @foo : $@convention(thin) () -> () {
2929
bb0:
3030
%0 = integer_literal $Builtin.Int64, 2 // user: %1
31-
%1 = struct $Int (%0 : $Builtin.Int64) // user: %3
32-
%2 = alloc_stack $Int // users: %3, %6, %5
33-
store %1 to %2 : $*Int // id: %3
31+
%1 = struct $Int64 (%0 : $Builtin.Int64) // user: %3
32+
%2 = alloc_stack $Int64 // users: %3, %6, %5
33+
store %1 to %2 : $*Int64 // id: %3
3434
// function_ref bar<A>(_:)
3535
%4 = function_ref @bar : $@convention(thin) <τ_0_0> (@in τ_0_0) -> () // user: %5
36-
%5 = apply %4<Int>(%2) : $@convention(thin) <τ_0_0> (@in τ_0_0) -> ()
37-
dealloc_stack %2 : $*Int // id: %6
36+
%5 = apply %4<Int64>(%2) : $@convention(thin) <τ_0_0> (@in τ_0_0) -> ()
37+
dealloc_stack %2 : $*Int64 // id: %6
3838
%7 = tuple () // user: %8
3939
return %7 : $() // id: %8
4040
} // end sil function 'foo'

0 commit comments

Comments
 (0)