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

llvm-svn: 117122
This commit is contained in:
Stuart Hastings 2010-10-22 18:44:22 +00:00
parent 6956a60563
commit a8c4143bf6
1 changed files with 0 additions and 12 deletions

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
}