blob: f7f2a06b792488850655d7aa3648868ece6c6f7f [file] [log] [blame]
/* APPLE LOCAL file CW asm blocks */
/* { dg-do assemble { target powerpc*-*-* } } */
/* { dg-options { -fasm-blocks -O3 -Winline -Wall } } */
/* Radar 4381918 */
/* This should have no prologue/epilogue */
inline int numberFive (void);
asm int numberFive (void)
{ /* { dg-warning "can never be inlined" } */
/* LLVM LOCAL */
li r3, 1
}
void foo() {
numberFive (); // { dg-warning "called from here" }
}