Remove this weak test.

llvm-svn: 107059
This commit is contained in:
Devang Patel 2010-06-28 20:24:35 +00:00
parent 0e4d964bfe
commit 68c81196f9
1 changed files with 0 additions and 16 deletions

View File

@ -1,16 +0,0 @@
// RUN: %llvmgcc -S -O2 -g %s -o - | llc -O2 -o %t.s
// RUN: grep "# DW_TAG_formal_parameter" %t.s | count 4
// Radar 8122864
// XTARGET: x86,darwin
static int foo(int a, int j) {
int k = 0;
if (a)
k = a + j;
else
k = j;
return k;
}
int bar(int o, int p) {
return foo(o, p);
}