Summary: Check if the parent basic block and caller exists before calling CS.getCaller when constant folding strip.invariant.group instrinsic. This avoids a crash when the function containing the intrinsic is being inlined. The instruction is checked for any simplifiction but has not yet been added to a basic block. Reviewers: Prazek, rsmith, efriedma Reviewed By: efriedma Subscribers: eraman, llvm-commits Differential Revision: https://reviews.llvm.org/D49690 llvm-svn: 337742
20 lines
519 B
LLVM
20 lines
519 B
LLVM
; RUN: opt < %s -inline -S | FileCheck %s
|
|
|
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
define i8* @callee() alwaysinline {
|
|
; CHECK-LABEL: define i8* @callee()
|
|
%1 = call i8* @llvm.strip.invariant.group.p0i8(i8* null)
|
|
ret i8* %1
|
|
}
|
|
|
|
define i8* @caller() {
|
|
; CHECK-LABEL: define i8* @caller()
|
|
; CHECK-NEXT: call i8* @llvm.strip.invariant.group.p0i8(i8* null)
|
|
%1 = call i8* @callee()
|
|
ret i8* %1
|
|
}
|
|
|
|
declare i8* @llvm.strip.invariant.group.p0i8(i8*)
|