mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This reverts commit062d14b422. Revert "Fix a swift argument initialization bug - swift argument should be initialized" This reverts commit273b149583. This breaks DebugAssert as well as REPL builds. Revert to appease the bots while i look further.
81 lines
2.9 KiB
Swift
81 lines
2.9 KiB
Swift
// RUN: rm -rf %t && mkdir -p %t
|
|
// RUN: %target-swift-frontend -sdk %S/Inputs -primary-file %s -emit-ir | FileCheck %s
|
|
|
|
// RUN: mkdir -p %t/Empty.framework/Modules/Empty.swiftmodule
|
|
// RUN: %target-swift-frontend -emit-module-path %t/Empty.framework/Modules/Empty.swiftmodule/%target-swiftmodule-name %S/../Inputs/empty.swift -module-name Empty
|
|
// RUN: %target-swift-frontend -sdk %S/Inputs -primary-file %s -F %t -DIMPORT_EMPTY -emit-ir > %t.ll
|
|
// RUN: FileCheck %s < %t.ll
|
|
// RUN: FileCheck -check-prefix=NEGATIVE %s < %t.ll
|
|
|
|
// REQUIRES: CPU=i386_or_x86_64
|
|
// XFAIL: linux
|
|
|
|
#if IMPORT_EMPTY
|
|
import Empty
|
|
#endif
|
|
|
|
import gizmo
|
|
|
|
// CHECK-LABEL: define hidden i64 @_TFC12clang_inline16CallStaticInline10ReturnZerofT_Vs5Int64(%C12clang_inline16CallStaticInline*) {{.*}} {
|
|
class CallStaticInline {
|
|
func ReturnZero() -> Int64 { return Int64(zero()) }
|
|
}
|
|
|
|
// CHECK-LABEL: define internal i32 @zero()
|
|
// CHECK: [[INLINEHINT_SSP_UWTABLE:#[0-9]+]] {
|
|
|
|
// CHECK-LABEL: define hidden i64 @_TFC12clang_inline17CallStaticInline210ReturnZerofT_Vs5Int64(%C12clang_inline17CallStaticInline2*) {{.*}} {
|
|
class CallStaticInline2 {
|
|
func ReturnZero() -> Int64 { return Int64(wrappedZero()) }
|
|
}
|
|
|
|
// CHECK-LABEL: define internal i32 @wrappedZero()
|
|
// CHECK: [[INLINEHINT_SSP_UWTABLE:#[0-9]+]] {
|
|
|
|
// CHECK-LABEL: define hidden i32 @_TF12clang_inline10testExternFT_Vs5Int32() {{.*}} {
|
|
func testExtern() -> CInt {
|
|
return wrappedGetInt()
|
|
}
|
|
|
|
// CHECK-LABEL: define internal i32 @wrappedGetInt()
|
|
// CHECK: [[INLINEHINT_SSP_UWTABLE:#[0-9]+]] {
|
|
|
|
// CHECK-LABEL: define hidden i32 @_TF12clang_inline16testAlwaysInlineFT_Vs5Int32()
|
|
// CHECK: [[SSP:#[0-9]+]] {
|
|
// NEGATIVE-NOT: @alwaysInlineNumber
|
|
// CHECK: ret i32 17
|
|
func testAlwaysInline() -> CInt {
|
|
return alwaysInlineNumber()
|
|
}
|
|
|
|
// CHECK-LABEL: define hidden i32 @_TF12clang_inline20testInlineRedeclaredFT_Vs5Int32() {{.*}} {
|
|
func testInlineRedeclared() -> CInt {
|
|
return zeroRedeclared()
|
|
}
|
|
|
|
// CHECK-LABEL: define internal i32 @zeroRedeclared() #{{[0-9]+}} {
|
|
|
|
// CHECK-LABEL: define hidden i32 @_TF12clang_inline27testInlineRedeclaredWrappedFT_Vs5Int32() {{.*}} {
|
|
func testInlineRedeclaredWrapped() -> CInt {
|
|
return wrappedZeroRedeclared()
|
|
}
|
|
|
|
// CHECK-LABEL: define internal i32 @wrappedZeroRedeclared() #{{[0-9]+}} {
|
|
|
|
// CHECK-LABEL: define hidden i32 @_TF12clang_inline22testStaticButNotInlineFT_Vs5Int32() {{.*}} {
|
|
func testStaticButNotInline() -> CInt {
|
|
return staticButNotInline()
|
|
}
|
|
|
|
// CHECK-LABEL: define internal i32 @staticButNotInline() #{{[0-9]+}} {
|
|
|
|
// CHECK-LABEL: define internal i32 @innerZero()
|
|
// CHECK: [[INNER_ZERO_ATTR:#[0-9]+]] {
|
|
// CHECK-LABEL: declare i32 @getInt()
|
|
// CHECK: [[GET_INT_ATTR:#[0-9]+]]
|
|
|
|
// CHECK: attributes [[INLINEHINT_SSP_UWTABLE]] = { inlinehint ssp {{.*}}}
|
|
// CHECK: attributes [[SSP]] = { ssp {{.*}} }
|
|
// CHECK: attributes [[INNER_ZERO_ATTR]] = { inlinehint nounwind ssp
|
|
// CHECK: attributes [[GET_INT_ATTR]] = {
|