[llvm] r255755 - Remove FileCheck from test case token_landingpad.ll.
Chen Li via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 15 22:27:10 PST 2015
Author: chenli
Date: Wed Dec 16 00:27:09 2015
New Revision: 255755
URL: http://llvm.org/viewvc/llvm-project?rev=255755&view=rev
Log:
Remove FileCheck from test case token_landingpad.ll.
The test case only needs to make sure it does not crash LLVM.
Modified:
llvm/trunk/test/CodeGen/X86/token_landingpad.ll
Modified: llvm/trunk/test/CodeGen/X86/token_landingpad.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/token_landingpad.ll?rev=255755&r1=255754&r2=255755&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/token_landingpad.ll (original)
+++ llvm/trunk/test/CodeGen/X86/token_landingpad.ll Wed Dec 16 00:27:09 2015
@@ -1,9 +1,8 @@
-; RUN: llc < %s | FileCheck %s
+; RUN: llc < %s
-; This test verifies that SelectionDAG can handle landingPad of token type.
+; This test verifies that SelectionDAG can handle landingPad of token type and not crash LLVM.
define void @test() personality i32 (...)* @dummy_personality {
-; CHECK: dummy_personality
entry:
invoke void @dummy()
to label %return unwind label %unwind
More information about the llvm-commits
mailing list