[PATCH] D67307: [MemorySSA] Do not create memoryaccesses for debug info intrinsics.
Adrian Prantl via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 9 14:24:47 PDT 2019
aprantl accepted this revision.
aprantl added inline comments.
This revision is now accepted and ready to land.
================
Comment at: lib/Analysis/MemorySSA.cpp:292
+ case Intrinsic::dbg_value:
+ assert(false && "debuginfo shouldn't have associated defs!");
+ return {false, NoAlias};
----------------
This should be `llvm_unreachable()`.
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D67307/new/
https://reviews.llvm.org/D67307
More information about the llvm-commits
mailing list