| Dan Gohman | 1880092 | 2009-09-11 18:01:28 +0000 | [diff] [blame] | 1 | ; RUN: opt < %s -sccp -disable-output |
| Nick Lewycky | 206876e | 2009-05-28 04:08:10 +0000 | [diff] [blame] | 2 | ; PR4277 |
| 3 | |||||
| 4 | define i32 @main() nounwind { | ||||
| 5 | entry: | ||||
| David Blaikie | 23af648 | 2015-04-16 23:24:18 +0000 | [diff] [blame] | 6 | %0 = tail call signext i8 (...) @sin() nounwind |
| Nick Lewycky | 206876e | 2009-05-28 04:08:10 +0000 | [diff] [blame] | 7 | ret i32 0 |
| 8 | } | ||||
| 9 | |||||
| 10 | declare signext i8 @sin(...) | ||||