xref: /llvm-project/llvm/test/Transforms/StripDeadPrototypes/remove-global-variable-declaration.ll (revision d2640f596c4763596ab92dadbdd0477afae4190f)
1; RUN: opt -passes=strip-dead-prototypes -S -verify-analysis-invalidation < %s | FileCheck %s
2
3; The declaration of the unused global variable @.str should be removed without
4; getting any error from -verify-analysis-invalidation.
5
6; CHECK-NOT: @.str
7
8@.str = external constant [15 x i16]
9
10