mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
The attribute is `range(i8 -127, -128)`. The documentation specifies that the range can wrap, meaning that for i8 [-127, -128) is equivalent to [-127, 127). This is expected for a function that simply increments a i8 value. See https://llvm.org/docs/LangRef.html#parameter-attributes. Match it using a wildcard regex, since it is not relevant to this test. This is intended to reduce future conflicts with rebranch.
17 lines
857 B
Swift
17 lines
857 B
Swift
// RUN: %target-swift-frontend -primary-file %s -g -emit-ir | %FileCheck %s
|
|
// RUN: %target-swift-frontend -primary-file %s -g -O -emit-ir | %FileCheck %s
|
|
// REQUIRES: optimized_stdlib
|
|
|
|
// CHECK-LABEL: define hidden swiftcc{{.*}} i8 @"$s16condfail_message6testitys4Int8VADF"(i8 %0)
|
|
// CHECK: call void @llvm.trap(), !dbg [[LOC:![0-9]+]]
|
|
|
|
func testit(_ a: Int8) -> Int8 {
|
|
return a + 1
|
|
}
|
|
|
|
// CHECK: [[CALLER_LOC:![0-9]+]] = !DILocation(line: 9, column: 12, scope: !{{.*}})
|
|
// CHECK: [[LOC]] = !DILocation(line: 0, scope: [[FAILURE_FUNC:![0-9]+]], inlinedAt: [[CALLER_LOC]])
|
|
// CHECK: [[FAILURE_FUNC]] = distinct !DISubprogram(name: "Swift runtime failure: arithmetic overflow", scope: {{.*}}, file: {{.*}}, type: [[FUNC_TYPE:![0-9]+]], flags: DIFlagArtificial, spFlags: DISPFlagDefinition, {{.*}})
|
|
// CHECK: [[FUNC_TYPE]] = !DISubroutineType(types: null)
|
|
|