Temporarily revert r117079; it broke a tester. Radar 6635085.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117122 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Stuart Hastings 2010-10-22 18:44:22 +00:00
parent 3870b750e6
commit ef4fc2cd6d

View File

@ -1,12 +0,0 @@
// RUN: %llvmgcc -fno-exceptions %s -S -emit-llvm -o - | FileCheck %s
struct Foo
{
int x;
Foo ();
};
Foo *test(void)
{
return new Foo();
// There should be no references to any Unwinding routines under -fno-exceptions.
// CHECK-NOT: Unwind
}