Files
swift-mirror/test/IRGen/ordering_arm.sil
Slava Pestov e123815e85 IRGen: Use the correct triple when checking for YAML legacy type info
IGM.Triple is irgen.getEffectiveClangTriple(), which says "thumbv7"
in place of "armv7" for 32-bit iOS ARM targets.

Instead, lets use IGM.Context.LangOpts.Target, which is what we use
to find swiftmodule files.
2019-02-15 21:10:27 -05:00

34 lines
968 B
Plaintext

// RUN: %swift -target armv7-apple-ios7.1 -disable-legacy-type-info %s -module-name main -emit-ir -o - | %FileCheck %s
// REQUIRES: CODEGENERATOR=ARM
sil_stage canonical
sil @foo : $@convention(thin) () -> () {
bb0:
// In a simple module-appending scheme where we emitted SIL
// functions in order, this function reference would cause
// @baz to be created immediately following @foo because we
// won't yet have created the declaration for @bar.
%0 = function_ref @baz : $@convention(thin) () -> ()
%1 = apply %0() : $@convention(thin) () -> ()
return %1 : $()
}
sil @bar : $@convention(thin) () -> () {
bb0:
%0 = tuple ()
return %0 : $()
}
sil @baz : $@convention(thin) () -> () {
bb0:
%0 = tuple ()
return %0 : $()
}
// Make sure that these functions are emitted in the order they
// CHECK: define{{( protected)?}} swiftcc void @foo
// CHECK: define{{( protected)?}} swiftcc void @bar
// CHECK: define{{( protected)?}} swiftcc void @baz