Remove support for the icmp and fcmp constant expressions. This is part of: https://discourse.llvm.org/t/rfc-remove-most-constant-expressions/63179 As usual, many of the updated tests will no longer test what they were originally intended to -- this is hard to preserve when constant expressions get removed, and in many cases just impossible as the existence of a specific kind of constant expression was the cause of the issue in the first place.
22 lines
862 B
LLVM
22 lines
862 B
LLVM
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 2
|
|
; RUN: opt -S -passes=globalopt < %s | FileCheck %s
|
|
|
|
; Test handling of dead constant expressions in CleanupPointerRootUsers().
|
|
|
|
@g = internal global [2 x [1 x [6 x ptr]]] zeroinitializer
|
|
|
|
define void @test() {
|
|
; CHECK-LABEL: define void @test() local_unnamed_addr {
|
|
; CHECK-NEXT: ret void
|
|
;
|
|
store ptr null, ptr getelementptr inbounds ([2 x [1 x [6 x ptr]]], ptr @g, i32 0, i32 1), align 1
|
|
ret void
|
|
|
|
dead:
|
|
%cmp = icmp ne ptr getelementptr inbounds ([2 x [1 x [6 x ptr]]], ptr @g, i32 0, i32 1), getelementptr inbounds ([6 x ptr], ptr getelementptr inbounds ([2 x [1 x [6 x ptr]]], ptr @g, i32 0, i32 1), i32 0, i32 5)
|
|
ret void
|
|
}
|
|
|
|
; uselistorder directives
|
|
uselistorder ptr getelementptr inbounds ([2 x [1 x [6 x ptr]]], ptr @g, i32 0, i32 1), { 1, 2, 0 }
|