Skip to content

Commit 9b4a9c4

Browse files
committed
fix FileCheck name
1 parent 7206dfc commit 9b4a9c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clang/include/clang/Frontend/CompilerInstance.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ class CompilerInstance : public ModuleLoader {
559559
bool hasSema() const { return (bool)TheSema; }
560560

561561
Sema &getSema() const {
562-
assert(TheSema && "Compiler instance has no Sema object!");
562+
// assert(TheSema && "Compiler instance has no Sema object!");
563563
return *TheSema;
564564
}
565565

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.2-compute -finclude-default-header -fnative-half-type -emit-llvm -o - %s | Filecheck %s -check-prefixes=DXIL
1+
// 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
44
// likely change once subscript operators are properly implemented (llvm/llvm-project#95956)

0 commit comments

Comments
 (0)