Skip to content

Make test 32bit safe #12998

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 18, 2017
Merged
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
10 changes: 5 additions & 5 deletions test/SILOptimizer/specialize_no_definition.sil
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ sil_stage canonical
sil hidden @foo : $@convention(thin) () -> () {
bb0:
%0 = integer_literal $Builtin.Int64, 2 // user: %1
%1 = struct $Int (%0 : $Builtin.Int64) // user: %3
%2 = alloc_stack $Int // users: %3, %6, %5
store %1 to %2 : $*Int // id: %3
%1 = struct $Int64 (%0 : $Builtin.Int64) // user: %3
%2 = alloc_stack $Int64 // users: %3, %6, %5
store %1 to %2 : $*Int64 // id: %3
// function_ref bar<A>(_:)
%4 = function_ref @bar : $@convention(thin) <τ_0_0> (@in τ_0_0) -> () // user: %5
%5 = apply %4<Int>(%2) : $@convention(thin) <τ_0_0> (@in τ_0_0) -> ()
dealloc_stack %2 : $*Int // id: %6
%5 = apply %4<Int64>(%2) : $@convention(thin) <τ_0_0> (@in τ_0_0) -> ()
dealloc_stack %2 : $*Int64 // id: %6
%7 = tuple () // user: %8
return %7 : $() // id: %8
} // end sil function 'foo'
Expand Down