File tree Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ Optional<UUID> UUID::fromString(const char *s) {
41
41
42
42
void UUID::toString (llvm::SmallVectorImpl<char > &out) const {
43
43
out.resize (UUID::StringBufferSize);
44
- uuid_unparse (Value, out.data ());
44
+ uuid_unparse_upper (Value, out.data ());
45
45
// Pop off the null terminator.
46
46
assert (out.back () == ' \0 ' && " did not null-terminate?!" );
47
47
out.pop_back ();
Original file line number Diff line number Diff line change 1
1
// RUN: %target-swift-frontend %s -emit-silgen | FileCheck %s
2
2
3
- // XFAIL: linux
4
-
5
3
sil_stage raw // CHECK: sil_stage raw
6
4
7
5
import Builtin
Original file line number Diff line number Diff line change 9
9
// RUN: %target-build-swift -Xfrontend %clang-importer-sdk -emit-module -Xfrontend -disable-diagnostic-passes -force-single-frontend-invocation -Xfrontend -sil-serialize-all -o %t/def_basic.swiftmodule %S/Inputs/def_basic.sil
10
10
// RUN: %target-build-swift -Xfrontend %clang-importer-sdk -emit-silgen -Xfrontend -sil-link-all -I %t %s | FileCheck -check-prefix=CHECK_DECL %S/Inputs/def_basic.sil
11
11
12
- // XFAIL: linux
13
-
14
12
// This test currently is written such that no optimizations are assumed.
15
13
// REQUIRES: swift_test_mode_optimize_none
16
14
You can’t perform that action at this time.
0 commit comments