diff options
author | John Criswell <criswell@uiuc.edu> | 2005-10-19 18:52:52 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2005-10-19 18:52:52 +0000 |
commit | b2544ff7a7f22392bc681df7d6e4857f4ff38cec (patch) | |
tree | 376c052ed606342f7516b7e5d9fe8e791820d240 /llvm | |
parent | 14582b1a73ea8ebe0a8905b1c7a9915299beaccb (diff) | |
download | bcm5719-llvm-b2544ff7a7f22392bc681df7d6e4857f4ff38cec.tar.gz bcm5719-llvm-b2544ff7a7f22392bc681df7d6e4857f4ff38cec.zip |
Moved to Regression/Codegen/Generic.
llvm-svn: 23829
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/Regression/CodeGen/X86/2004-02-08-UnwindSupport.llx | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/llvm/test/Regression/CodeGen/X86/2004-02-08-UnwindSupport.llx b/llvm/test/Regression/CodeGen/X86/2004-02-08-UnwindSupport.llx deleted file mode 100644 index 4aaddd6a425..00000000000 --- a/llvm/test/Regression/CodeGen/X86/2004-02-08-UnwindSupport.llx +++ /dev/null @@ -1,13 +0,0 @@ -; RUN: llvm-as < %s | llc -march=x86 -enable-correct-eh-support - -int %test() { - unwind -} - -int %main() { - %X = invoke int %test() to label %cont except label %EH -cont: - ret int 1 -EH: - ret int 0 -} |