Skip to content

Commit b64784a

Browse files
authored
Merge pull request #2483 from adrian-prantl/stdlibforce
Force the Swift stdlib to be linked in test
2 parents 02e8350 + 62cfff1 commit b64784a

File tree

1 file changed

+4
-3
lines changed
  • lldb/test/API/lang/swift/accelerate_simd

1 file changed

+4
-3
lines changed

lldb/test/API/lang/swift/accelerate_simd/main.swift

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ func main() -> Int {
22
let d4 = SIMD4<Double>(1.5, 2, 3, 4)
33
let patatino = SIMD4<Int>(1,2,3,4)
44
let tinky = SIMD2<Int>(12, 24)
5-
return 0 //%self.expect('frame variable d4', substrs=['1.5', '2', '3', '4'])
6-
//%self.expect('frame var patatino', substrs=['(1, 2, 3, 4)'])
7-
//%self.expect('frame var tinky', substrs=['(12, 24)'])
5+
print((d4, patatino, tinky)) //%self.expect('frame variable d4', substrs=['1.5', '2', '3', '4'])
6+
//%self.expect('frame var patatino', substrs=['(1, 2, 3, 4)'])
7+
//%self.expect('frame var tinky', substrs=['(12, 24)'])
8+
return 0
89
}
910

1011
main()

0 commit comments

Comments
 (0)