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)