Regression test for PR#922.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30599 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
John Criswell 2006-09-25 19:12:01 +00:00
parent fb981f3fee
commit a47c2e4927
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,5 @@
// RUN: %llvmgcc -xc %s -S -o /dev/null 2>&1 | grep fluffy | grep '2006-09-25-DebugFilename.c.tr'
#include "2006-09-25-DebugFilename.h"
int func1() { return hfunc1(); }
int func2() { fluffy; return hfunc1(); }

View File

@ -0,0 +1,6 @@
extern int exfunc(int a);
static inline int hfunc1()
{
return exfunc(1);
}