Skip to content

Commit 99ff20d

Browse files
committed
---
yaml --- r: 349538 b: refs/heads/master-next c: 7b2068a h: refs/heads/master
1 parent d9db230 commit 99ff20d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
refs/heads/master: 3574c513bbc5578dd9346b4ea9ab5995c5927bb5
3-
refs/heads/master-next: 38bd084e6076ca68489adbb36f14e687ef9c0611
3+
refs/heads/master-next: 7b2068a6770abcc9c9e4c0fd20c3b7ea09ff7787
44
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
55
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea
66
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-b: 66d897bfcf64a82cb9a87f5e663d889189d06d07

branches/master-next/lib/ClangImporter/ClangImporter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ addCommonInvocationArguments(std::vector<std::string> &invocationArgStrs,
729729
invocationArgStrs.push_back("-mcpu=cyclone");
730730
}
731731
} else if (triple.getArch() == llvm::Triple::systemz) {
732-
invocationArgStrs.push_back("-march=z196");
732+
invocationArgStrs.push_back("-march=z13");
733733
}
734734

735735
if (!importerOpts.Optimization.empty()) {

branches/master-next/test/IRGen/objc_simd.sil

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ entry(%x : $float3):
6161
// armv7k-LABEL: define{{( dllexport)?}}{{( protected)?}} swiftcc { float, float, float, float } @simd_native_args(float, float, float, float)
6262
// powerpc64-LABEL: define{{( dllexport)?}}{{( protected)?}} void @simd_native_args(%T4simd6float4V* noalias nocapture sret, %T4simd6float4V* noalias nocapture dereferenceable({{.*}}))
6363
// powerpc64le-LABEL: define{{( dllexport)?}}{{( protected)?}} swiftcc { float, float, float, float } @simd_native_args(float, float, float, float)
64-
// s390x-LABEL: define{{( dllexport)?}}{{( protected)?}} void @simd_native_args(%T4simd6float4V* noalias nocapture sret, %T4simd6float4V* noalias nocapture dereferenceable({{.*}}))
64+
// s390x-LABEL: define{{( dllexport)?}}{{( protected)?}} swiftcc { float, float, float, float } @simd_native_args(float, float, float, float)
6565
sil @simd_native_args : $@convention(thin) (float4) -> float4 {
6666
entry(%x : $float4):
6767
%f = function_ref @simd_c_args : $@convention(c) (float4) -> float4

branches/master-next/test/Misc/target-cpu.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@
3838
// WATCHSIMULATOR64_CPU: "-target-cpu" "core2"
3939

4040
// RUN: not %swift -typecheck -target s390x-unknown-linux-gnu -Xcc -### %s 2>&1 | %FileCheck -check-prefix=S390X_CPU %s
41-
// S390X_CPU: "-target-cpu" "z196"
41+
// S390X_CPU: "-target-cpu" "z13"
4242

0 commit comments

Comments
 (0)