File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- // RUN: %target-swift-frontend -assume-parsing-unqualified-ownership-sil %s -emit-ir -whole-module-optimization | %FileCheck %s
1
+ // RUN: %target-swift-frontend -assume-parsing-unqualified-ownership-sil %s -emit-ir | %FileCheck %s
2
2
3
3
// REQUIRES: CPU=i386 || CPU=x86_64
4
4
@@ -11,7 +11,7 @@ _ = atan2test(0.0, 0.0)
11
11
12
12
13
13
// Ordinary Swift definitions
14
- // WMO is expected to eliminate the unused internal and private functions.
14
+ // The unused internal and private functions are expected to be eliminated .
15
15
16
16
public func PlainPublic( ) { }
17
17
internal func PlainInternal( ) { }
@@ -22,7 +22,7 @@ private func PlainPrivate() { }
22
22
23
23
24
24
// Swift _silgen_name definitions
25
- // WMO is expected to eliminate the private function
25
+ // The private function is expected to be eliminated
26
26
// but the internal function must survive for C use.
27
27
// Only the C-named definition is emitted.
28
28
@@ -36,7 +36,7 @@ private func PlainPrivate() { }
36
36
37
37
38
38
// Swift cdecl definitions
39
- // WMO is expected to eliminate the private functions
39
+ // The private functions are expected to be eliminated
40
40
// but the internal functions must survive for C use.
41
41
// Both a C-named definition and a Swift-named definition are emitted.
42
42
You can’t perform that action at this time.
0 commit comments