Skip to content

Commit fe664d7

Browse files
SC llvm teamSC llvm team
authored andcommitted
Merged main:024718313b52 into amd-gfx:ff07c6f2ec34
Local branch amd-gfx ff07c6f Merged main:5ac5c0e7d100 into amd-gfx:748e3557cc2b Remote branch main 0247183 [Flang] Fix a test case that depends on stderr output of nullptr. (llvm#73349)
2 parents ff07c6f + 0247183 commit fe664d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

flang/unittests/Runtime/RuntimeCrashTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ TEST(TestTerminator, CheckFailedLocationTest) {
4343
}
4444

4545
TEST(TestTerminator, CheckFailedTest) {
46-
static Fortran::runtime::Terminator t;
46+
static Fortran::runtime::Terminator t("someFileName");
4747
ASSERT_DEATH(t.CheckFailed("predicate"),
48-
"RUNTIME_CHECK\\(predicate\\) failed at \\(null\\)\\(0\\)");
48+
"RUNTIME_CHECK\\(predicate\\) failed at someFileName\\(0\\)");
4949
}
5050

5151
//------------------------------------------------------------------------------

llvm/include/llvm/Config/llvm-config.h.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
/* Indicate that this is LLVM compiled from the amd-gfx branch. */
1818
#define LLVM_HAVE_BRANCH_AMD_GFX
19-
#define LLVM_MAIN_REVISION 481697
19+
#define LLVM_MAIN_REVISION 481698
2020

2121
/* Define if LLVM_ENABLE_DUMP is enabled */
2222
#cmakedefine LLVM_ENABLE_DUMP

0 commit comments

Comments
 (0)