forked from ldc-developers/ldc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix regression with LLVM 13+: some errors in inline assembly don't st…
…op compilation Based on Luís' ldc-developers#4302; fixes ldc-developers#4293.
- Loading branch information
Showing
3 changed files
with
26 additions
and
2 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
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,11 @@ | ||
// Make sure an invalid asm instruction causes a non-zero exit code. | ||
|
||
// RUN: not %ldc -c %s 2> %t.stderr | ||
// RUN: FileCheck %s < %t.stderr | ||
|
||
void main() | ||
{ | ||
asm { "some_garbage"; } | ||
} | ||
|
||
// CHECK: asm_error_gh4293.d(8):1:2: error: invalid instruction mnemonic 'some_garbage' |