Skip to content

Commit 8d844a9

Browse files
committed
Merge branch 'sycl' into martin/fixDevicePartitionOpenCL
2 parents 97df49b + db59b4f commit 8d844a9

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

llvm/include/llvm/ADT/StringRef.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -263,11 +263,6 @@ namespace llvm {
263263
return Length >= Prefix.Length &&
264264
compareMemory(Data, Prefix.Data, Prefix.Length) == 0;
265265
}
266-
[[nodiscard]] LLVM_DEPRECATED(
267-
"Use starts_with instead",
268-
"starts_with") bool startswith(StringRef Prefix) const {
269-
return starts_with(Prefix);
270-
}
271266
[[nodiscard]] bool starts_with(char Prefix) const {
272267
return !empty() && front() == Prefix;
273268
}
@@ -281,11 +276,6 @@ namespace llvm {
281276
compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) ==
282277
0;
283278
}
284-
[[nodiscard]] LLVM_DEPRECATED(
285-
"Use ends_with instead",
286-
"ends_with") bool endswith(StringRef Suffix) const {
287-
return ends_with(Suffix);
288-
}
289279
[[nodiscard]] bool ends_with(char Suffix) const {
290280
return !empty() && back() == Suffix;
291281
}

llvm/test/CodeGen/SPIRV/transcoding/TransFNeg.ll

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
; RUN: llc -O0 -mtriple=spirv32-unknown-unknown %s -o - | FileCheck %s --check-prefix=CHECK-SPIRV
22

3-
; https://github.com/intel/llvm/issues/14372
4-
; UNSUPPORTED: windows
5-
63
; CHECK-SPIRV: OpFNegate
74
; CHECK-SPIRV: OpFNegate
85
; CHECK-SPIRV: OpFNegate

0 commit comments

Comments
 (0)