1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00
llvm-mirror/test/Reduce/remove-global-variable-attributes.ll
Roman Lebedev 892d28a558 [llvm-reduce] Reducing attributes
Summary:
This handles all three places where attributes could currently be - `GlobalVariable`, `Function` and `CallBase`.
For last two, it correctly handles all three possible attribute locations (return value, arguments and function itself)

There was a previous attempt at it D73853,
which was committed in rGfc62b36a000681c01e993242b583c5ec4ab48a3c,
but then reverted all the way back in rGb12176d2aafa0ccb2585aa218fc3b454ba84f2a9
due to some (osx?) test failures.

Reviewers: nickdesaulniers, dblaikie, diegotf, george.burgess.iv, jdoerfert, Tyker, arsenm

Reviewed By: nickdesaulniers

Subscribers: wdng, MaskRay, arsenm, llvm-commits, mgorny

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D83351
2020-07-09 23:10:43 +03:00

28 lines
933 B
LLVM

; Test that llvm-reduce can remove uninteresting attributes.
;
; RUN: llvm-reduce --test FileCheck --test-arg --check-prefixes=CHECK-ALL,CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t
; RUN: cat %t | FileCheck --check-prefixes=CHECK-ALL,CHECK-FINAL %s
; CHECK-ALL: @gv0 = global i32 0 #0
; CHECK-ALL-NEXT: @gv1 = global i32 0 #1
; CHECK-ALL-NEXT: @gv2 = global i32 0
@gv0 = global i32 0 #0
@gv1 = global i32 0 #1
@gv2 = global i32 0 #2
; CHECK-INTERESTINGNESS: attributes #0 = {
; CHECK-INTERESTINGNESS-SAME: "attr0"
; CHECK-INTERESTINGNESS-SAME: "attr2"
; CHECK-INTERESTINGNESS-NEXT: attributes #1 = {
; CHECK-INTERESTINGNESS-SAME: "attr4"
; CHECK-FINAL: attributes #0 = { "attr0" "attr2" }
; CHECK-FINAL-NEXT: attributes #1 = { "attr4" }
; CHECK-FINAL-NOT: attributes #2
attributes #0 = { "attr0" "attr1" "attr2"}
attributes #1 = { "attr3" "attr4" "attr5"}
attributes #2 = { "attr6" "attr7" "attr8"}