Skip to content

Commit 6bf7e89

Browse files
committed
Fix include path on case sensitive filesystem
1 parent e45223b commit 6bf7e89

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

llvm/test/TableGen/RuntimeLibcallEmitter-bad-system-library-entry-error.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// RUN: not llvm-tblgen -gen-runtime-libcalls -I %p/../../include %s 2>&1 | FileCheck %s
22

3-
include "llvm/IR/RuntimeLibCallsImpl.td"
3+
include "llvm/IR/RuntimeLibcallsImpl.td"
44

55
def SOME_FUNC : RuntimeLibcall;
66
def func_a : RuntimeLibcallImpl<SOME_FUNC>;

llvm/test/TableGen/RuntimeLibcallEmitter-conflict-warning.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Check behavior of libcall emission when multiple RuntimeLibcallImpl
55
// implementations provide the same RuntimeLibcall
66

7-
include "llvm/IR/RuntimeLibCallsImpl.td"
7+
include "llvm/IR/RuntimeLibcallsImpl.td"
88

99
def SOME_FUNC : RuntimeLibcall;
1010
def OTHER_FUNC : RuntimeLibcall;

llvm/test/TableGen/RuntimeLibcallEmitter-nested-predicates-error.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// RUN: not llvm-tblgen -gen-runtime-libcalls -I %p/../../include %s 2>&1 | FileCheck -check-prefix=ERR %s
22

3-
include "llvm/IR/RuntimeLibCallsImpl.td"
3+
include "llvm/IR/RuntimeLibcallsImpl.td"
44

55
def FUNC0 : RuntimeLibcall;
66
def FUNC1 : RuntimeLibcall;

0 commit comments

Comments
 (0)