Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | ; The CBE should not emit code that casts the function pointer. This causes |
| 2 | ; GCC to get testy and insert trap instructions instead of doing the right |
| 3 | ; thing. :( |
Tanya Lattner | f28e0ce | 2008-02-19 01:41:04 +0000 | [diff] [blame^] | 4 | ; RUN: llvm-as < %s | llc -march=c |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 5 | |
Tanya Lattner | f28e0ce | 2008-02-19 01:41:04 +0000 | [diff] [blame^] | 6 | declare void @external(i8*) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | |
Tanya Lattner | f28e0ce | 2008-02-19 01:41:04 +0000 | [diff] [blame^] | 8 | define i32 @test(i32* %X) { |
| 9 | %RV = call i32 bitcast (void (i8*)* @external to i32 (i32*)*)( i32* %X ) ; <i32> [#uses=1] |
| 10 | ret i32 %RV |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 11 | } |
| 12 | |