diff --git a/clang/test/CodeGenCXX/throw-expression-dtor.cpp b/clang/test/CodeGenCXX/throw-expression-dtor.cpp index 5cda625bbf9d..a6f8c1cf04c1 100644 --- a/clang/test/CodeGenCXX/throw-expression-dtor.cpp +++ b/clang/test/CodeGenCXX/throw-expression-dtor.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 %s -emit-llvm-only -verify +// RUN: %clang_cc1 %s -emit-llvm -o - -fexceptions | FileCheck %s // PR7281 class A { @@ -11,4 +11,3 @@ class B : public A { void B::ice_throw() { throw *this; } -