mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
14 lines
398 B
Plaintext
14 lines
398 B
Plaintext
// RUN: %target-sil-opt %s
|
|
|
|
sil @test : $@convention(thin) () -> () {
|
|
bb0:
|
|
// CHECK: string_literal utf8 "\u{0B}"
|
|
%1 = string_literal utf8 "\u{0B}"
|
|
// CHECK: string_literal bytes "ABCD"
|
|
%4 = string_literal bytes "ABCD"
|
|
// CHECK: string_literal oslog "os log section"
|
|
%5 = string_literal oslog "os log section"
|
|
%6 = tuple () // user: %7
|
|
return %6 : $()
|
|
}
|