diff options
author | Reid Kleckner <reid@kleckner.net> | 2015-01-29 22:32:26 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2015-01-29 22:32:26 +0000 |
commit | 2a2235087ff4fa50849180154f1d88aad11e476d (patch) | |
tree | 496e88979c459862dca79a2090e016f8215a1aed /llvm/lib/CodeGen | |
parent | da72c246ed59b0e3ea1481a8b87f8db6ebde7dc9 (diff) | |
download | bcm5719-llvm-2a2235087ff4fa50849180154f1d88aad11e476d.tar.gz bcm5719-llvm-2a2235087ff4fa50849180154f1d88aad11e476d.zip |
Update comments to use unreachable instead of llvm.trap, as implemented now
llvm-svn: 227502
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/WinEHPrepare.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/WinEHPrepare.cpp b/llvm/lib/CodeGen/WinEHPrepare.cpp index 48b3585e0cf..52bca672480 100644 --- a/llvm/lib/CodeGen/WinEHPrepare.cpp +++ b/llvm/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; |