diff options
author | Chris Lattner <sabre@nondot.org> | 2007-05-05 22:42:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-05-05 22:42:02 +0000 |
commit | 86c7745fb44d66f6aa267f42943e01e8ef26c5d5 (patch) | |
tree | 262cb46cfa811fb1e36940878e5053446e386e67 | |
parent | 8c756c1fff2b203cbc8173a44c312ee2fad8758d (diff) |
remove an old xfailed test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36810 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/InstCombine/2006-05-10-InvalidIndexUndef.ll | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/Transforms/InstCombine/2006-05-10-InvalidIndexUndef.ll b/test/Transforms/InstCombine/2006-05-10-InvalidIndexUndef.ll deleted file mode 100644 index 8cdaa5841f..0000000000 --- a/test/Transforms/InstCombine/2006-05-10-InvalidIndexUndef.ll +++ /dev/null @@ -1,9 +0,0 @@ -; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | grep undef -; XFAIL: * - -%str = constant [4 x ubyte] c"str\00" - -ubyte %main() { - %A = load ubyte* getelementptr ([4 x ubyte]* %str, long 0, long 5) - ret ubyte %A -} |