blob: 1d0c2a9647af3afbcf4990b01c343e0a868f89b5 [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 remove warning test */
li r3, 1
}
void foo() {
numberFive (); // { dg-warning "called from here" }
}