Vedant Kumar | 8c3bbfc | 2018-06-04 21:43:28 +0000 | [diff] [blame] | 1 | ; RUN: opt < %s -globals-aa -functionattrs | \ |
Vedant Kumar | 9e729a3 | 2018-06-05 00:56:08 +0000 | [diff] [blame] | 2 | ; RUN: opt -S -strip -strip-dead-prototypes -strip-named-metadata > %t.no_dbg |
Vedant Kumar | 8c3bbfc | 2018-06-04 21:43:28 +0000 | [diff] [blame] | 3 | |
| 4 | ; RUN: opt < %s -debugify-each -globals-aa -functionattrs | \ |
Vedant Kumar | 9e729a3 | 2018-06-05 00:56:08 +0000 | [diff] [blame] | 5 | ; RUN: opt -S -strip -strip-dead-prototypes -strip-named-metadata > %t.with_dbg |
Vedant Kumar | 8c3bbfc | 2018-06-04 21:43:28 +0000 | [diff] [blame] | 6 | |
| 7 | ; RUN: diff %t.no_dbg %t.with_dbg |
| 8 | |
| 9 | define i32 @f_1(i32 %x) { |
| 10 | %tmp = call i32 @f_1(i32 0) [ "deopt"() ] |
| 11 | ret i32 0 |
| 12 | } |