mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 07:09:08 +00:00
73449602de
Summary: Update condition to remove addition that may cause an overflow. Resolves PR42814. Reviewers: sanjoy, RKSimon Subscribers: jlebar, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D65417 llvm-svn: 367461
14 lines
407 B
LLVM
14 lines
407 B
LLVM
; RUN: opt -sccp -S %s | FileCheck %s
|
|
|
|
@0 = private unnamed_addr constant [16 x i8] c"\01\00\00\00\01\01\00\00\01\01\01\00\01\01\01\01"
|
|
|
|
; CHECK-LABEL: @foo
|
|
define i8 @foo() {
|
|
entry:
|
|
%0 = add nuw nsw i64 0, -1
|
|
%1 = lshr i64 %0, 1
|
|
%2 = getelementptr inbounds [4 x [4 x i8]], [4 x [4 x i8]]* bitcast ([16 x i8]* @0 to [4 x [4 x i8]]*), i64 0, i64 0, i64 %1
|
|
%3 = load i8, i8* %2, align 1
|
|
ret i8 %3
|
|
}
|