Skip to content

Commit 562d1e9

Browse files
committed
fixup: naming and extraneous removal of whitespace
1 parent 1090c93 commit 562d1e9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

clang/include/clang/Basic/Builtins.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4738,7 +4738,7 @@ def GetDeviceSideMangledName : LangBuiltin<"CUDA_LANG"> {
47384738
}
47394739

47404740
// HLSL
4741-
def HLSLTypedBufferPointer : LangBuiltin<"HLSL_LANG"> {
4741+
def HLSLResourceGetPointer : LangBuiltin<"HLSL_LANG"> {
47424742
let Spellings = ["__builtin_hlsl_resource_getpointer"];
47434743
let Attributes = [NoThrow];
47444744
let Prototype = "void(...)";

clang/test/CodeGenHLSL/builtins/RWBuffer-elementtype.hlsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// RUN: %clang_cc1 -triple spirv-pc-vulkan-compute -finclude-default-header -fnative-half-type -emit-llvm -o - %s | FileCheck %s -check-prefixes=SPIRV
33

44
// NOTE: The type name number and whether the struct is packed or not will mostly
5-
// likely change once subscript operators are properly implemented (llvm/llvm-project#95956)
5+
// likely change once subscript operators are properly implemented (llvm/llvm-project#95956)
66
// and theinterim field of the contained type is removed.
77

88
// DXIL: %"class.hlsl::RWBuffer" = type { target("dx.TypedBuffer", i16, 1, 0, 1) }

clang/test/CodeGenHLSL/builtins/RWStructuredBuffer-elementtype.hlsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.2-compute -finclude-default-header -fnative-half-type -emit-llvm -o - %s | FileCheck %s
22

33
// NOTE: The number in type name and whether the struct is packed or not will mostly
4-
// likely change once subscript operators are properly implemented (llvm/llvm-project#95956)
4+
// likely change once subscript operators are properly implemented (llvm/llvm-project#95956)
55
// and theinterim field of the contained type is removed.
66

77
// CHECK: %"class.hlsl::RWStructuredBuffer" = type { target("dx.RawBuffer", i16, 1, 0) }

clang/test/CodeGenHLSL/builtins/RasterizerOrderedStructuredBuffer-elementtype.hlsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.2-compute -finclude-default-header -fnative-half-type -emit-llvm -o - %s | FileCheck %s -check-prefixes=DXIL
22

33
// NOTE: The number in type name and whether the struct is packed or not will mostly
4-
// likely change once subscript operators are properly implemented (llvm/llvm-project#95956)
4+
// likely change once subscript operators are properly implemented (llvm/llvm-project#95956)
55
// and theinterim field of the contained type is removed.
66

77
struct MyStruct {

clang/test/CodeGenHLSL/builtins/StructuredBuffer-elementtype.hlsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.2-compute -finclude-default-header -fnative-half-type -emit-llvm -o - %s | FileCheck %s
22

33
// NOTE: The number in type name and whether the struct is packed or not will mostly
4-
// likely change once subscript operators are properly implemented (llvm/llvm-project#95956)
4+
// likely change once subscript operators are properly implemented (llvm/llvm-project#95956)
55
// and theinterim field of the contained type is removed.
66

77
// CHECK: %"class.hlsl::StructuredBuffer" = type { target("dx.RawBuffer", i16, 0, 0) }

0 commit comments

Comments
 (0)