Skip to content

Commit

Permalink
Fix a failing test and a mistake in the LLVMIR antlr grammar.
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasHeneka committed Jul 15, 2023
1 parent 0c6c027 commit b75caa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/test/java/de/jplag/cli/LanguageTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ void testInvalidLanguage() throws Exception {
@Test
void testLoading() {
var languages = LanguageLoader.getAllAvailableLanguages();
assertEquals(14, languages.size(), "Loaded Languages: " + languages.keySet());
assertEquals(15, languages.size(), "Loaded Languages: " + languages.keySet());
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -822,6 +822,7 @@ returnAttr:
| 'noalias'
| 'nonnull'
| 'noundef'
| align
| 'signext'
| 'zeroext';
overflowFlag: 'nsw' | 'nuw';
Expand Down

0 comments on commit b75caa8

Please sign in to comment.