diff options
author | Brian Gesiak <modocache@gmail.com> | 2018-04-12 21:28:04 +0000 |
---|---|---|
committer | Brian Gesiak <modocache@gmail.com> | 2018-04-12 21:28:04 +0000 |
commit | d0d2ce942507daf7d3315ef5e070e89f2823f1ef (patch) | |
tree | d56052f4e7c668bfab617dbed06d0f127fb3de59 /llvm/test/tools/llvm-diff/undef.ll | |
parent | 00db326b0d5fdd10998fe070fdaf80d3cc731585 (diff) | |
download | bcm5719-llvm-d0d2ce942507daf7d3315ef5e070e89f2823f1ef.tar.gz bcm5719-llvm-d0d2ce942507daf7d3315ef5e070e89f2823f1ef.zip |
Let llvm-diff correctly deal with Undef/ConstantAggregateZero/ConstantVector/IndirectBr
Summary:
llvm-diff incorrectly reports that there's a diff when input IR contains undef/zeroinitializer/constantvector/indirectbr.
(This happens even if two identical files are given, e.g. `llvm-diff x.ll x.ll`)
This is fix to the bug report https://bugs.llvm.org/show_bug.cgi?id=33623 .
Reviewers: dexonsmith, rjmccall
Reviewed By: rjmccall
Subscribers: chenwj, mgrang, llvm-commits
Differential Revision: https://reviews.llvm.org/D34856
llvm-svn: 329957
Diffstat (limited to 'llvm/test/tools/llvm-diff/undef.ll')
-rw-r--r-- | llvm/test/tools/llvm-diff/undef.ll | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/llvm/test/tools/llvm-diff/undef.ll b/llvm/test/tools/llvm-diff/undef.ll new file mode 100644 index 00000000000..607fb1f425e --- /dev/null +++ b/llvm/test/tools/llvm-diff/undef.ll @@ -0,0 +1,11 @@ +; Bugzilla: https://bugs.llvm.org/show_bug.cgi?id=33623 +; RUN: llvm-diff %s %s + +%A = type { i64, i64 } +@_gm_ = global <2 x %A*> zeroinitializer + +define void @f() { +entry: + store <2 x %A*> undef, <2 x %A*>* @_gm_ + ret void +} |