diff options
Diffstat (limited to 'gcc/testsuite/gnat.dg/opt21.adb')
-rw-r--r-- | gcc/testsuite/gnat.dg/opt21.adb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/gnat.dg/opt21.adb b/gcc/testsuite/gnat.dg/opt21.adb new file mode 100644 index 00000000000..c73fe9f228f --- /dev/null +++ b/gcc/testsuite/gnat.dg/opt21.adb @@ -0,0 +1,11 @@ +-- { dg-do run } +-- { dg-options "-O2" } + +with System; +with Opt21_Pkg; use Opt21_Pkg; + +procedure Opt21 is + V : System.Address := Convert (null); +begin + null; +end; |