From: Reid Kleckner Date: Thu, 29 Jan 2015 22:32:26 +0000 (+0000) Subject: Update comments to use unreachable instead of llvm.trap, as implemented now X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=23358b1d74b010b5bc354f88042eee054e89c3c6;p=oota-llvm.git Update comments to use unreachable instead of llvm.trap, as implemented now git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227502 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/WinEHPrepare.cpp b/lib/CodeGen/WinEHPrepare.cpp index 48b3585e0cf..52bca672480 100644 --- a/lib/CodeGen/WinEHPrepare.cpp +++ b/lib/CodeGen/WinEHPrepare.cpp @@ -79,7 +79,7 @@ bool WinEHPrepare::runOnFunction(Function &Fn) { if (!isMSVCPersonality(Pers)) return DwarfPrepare->runOnFunction(Fn); - // FIXME: Cleanups are unimplemented. Replace them with calls to @llvm.trap. + // FIXME: Cleanups are unimplemented. Replace them with unreachable. if (Resumes.empty()) return false;