[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / X86 / arg_returned_bitcast.ll
blob2287c129b75c0620197b9be4f681e2ef31538d3e
1 ; RUN: llc < %s -mtriple=i686-unknown-linux-gnu | FileCheck %s
3 ; Test that the "returned" attribute "works" even if there is a bitcast between
4 ; the argument and return value.
6 declare double* @bar(i8* returned)
8 define double* @foo(i8*) {
9   %r = tail call double* @bar(i8* %0)
10 ; CHECK: jmp    bar
11   ret double* %r