mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 03:56:42 +00:00

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.
42 lines
1.2 KiB
LLVM
42 lines
1.2 KiB
LLVM
; REQUIRES: x86
|
|
|
|
;; Test linking of weak symbols with LTO. The weak symbol may be defined
|
|
;; by another object file, or may be left undefined. When compiling the
|
|
;; IR with an undefined weak symbol, the emitted object file will contain
|
|
;; a weak alias pointing at an absolute symbol for the address null.
|
|
;; Make sure both cases can be linked correctly.
|
|
|
|
; RUN: split-file %s %t.dir
|
|
; RUN: llvm-as %t.dir/main.ll -o %t.main.obj
|
|
; RUN: llvm-as %t.dir/optional.ll -o %t.optional.obj
|
|
|
|
; RUN: lld-link /entry:main %t.main.obj /out:%t-undef.exe
|
|
; RUN: lld-link /entry:main %t.main.obj %t.optional.obj /out:%t-def.exe
|
|
|
|
;--- main.ll
|
|
target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-pc-windows-msvc"
|
|
|
|
define dso_local i32 @main() {
|
|
entry:
|
|
%cmp = icmp ne ptr @optionalFunc, null
|
|
br i1 %cmp, label %if.then, label %if.end
|
|
|
|
if.then:
|
|
tail call void @optionalFunc()
|
|
br label %if.end
|
|
|
|
if.end:
|
|
ret i32 0
|
|
}
|
|
|
|
declare extern_weak void @optionalFunc()
|
|
|
|
;--- optional.ll
|
|
target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-pc-windows-msvc"
|
|
|
|
define void @optionalFunc() {
|
|
ret void
|
|
}
|