remove this xfailed testcase, move it into a comment in PR279, an enhancement PR.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36793 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-05-05 21:38:55 +00:00
parent 5f2a3df54d
commit e9f0f48272

View File

@ -1,8 +0,0 @@
// XFAIL: *
// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep llvm.memset
char test(int X) {
char str[10000] = "abc"; // tail should be memset.
return str[X];
}