-
-
Notifications
You must be signed in to change notification settings - Fork 608
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5170 from 9rnsr/fix15176
[REG2.069.0-b1] Issue 15176 - ICE(glue.c):separate compilation with -inline crash in glue.c
- Loading branch information
Showing
4 changed files
with
39 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| // EXTRA_SOURCES: imports/ice15176a.d imports/ice15176b.d | ||
| // COMPILE_SEPARATELY | ||
|
|
||
| import imports.ice15176a; | ||
|
|
||
| void main() | ||
| { | ||
| func(); | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| module imports.ice15176a; | ||
|
|
||
| import imports.ice15176b; | ||
|
|
||
| struct Stack(T) | ||
| { | ||
| T[] data; | ||
| } | ||
|
|
||
| void func() | ||
| { | ||
| alias ValStack = Stack!CodepointSet; | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| module imports.ice15176b; | ||
|
|
||
| alias CodepointSet = InversionList!(); | ||
|
|
||
| struct InversionList() | ||
| { | ||
| uint[] data; | ||
| } |