diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2019-10-19 01:34:59 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2019-10-19 01:34:59 +0000 |
commit | 1aae510893e654361c17dc6d0cb27ac4de6202c8 (patch) | |
tree | 4097eb2e52e4504f56e1ec87c6cf2ae6f63cfe49 | |
parent | 904cd3e06b980baa90c6cd6614321b904a05e162 (diff) | |
download | bcm5719-llvm-1aae510893e654361c17dc6d0cb27ac4de6202c8.tar.gz bcm5719-llvm-1aae510893e654361c17dc6d0cb27ac4de6202c8.zip |
AMDGPU: Remove optnone from a test
It's not clear why the test had this. I'm unable to break the original
case with the original patch reverted with or without optnone.
This avoids a failure in a future commit.
llvm-svn: 375321
-rw-r--r-- | llvm/test/CodeGen/AMDGPU/extract-subvector-equal-length.ll | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/AMDGPU/extract-subvector-equal-length.ll b/llvm/test/CodeGen/AMDGPU/extract-subvector-equal-length.ll index 6f7fb53f76c..23c96373dcb 100644 --- a/llvm/test/CodeGen/AMDGPU/extract-subvector-equal-length.ll +++ b/llvm/test/CodeGen/AMDGPU/extract-subvector-equal-length.ll @@ -4,7 +4,7 @@ ; Test for ICE in SelectionDAG::computeKnownBits when visiting EXTRACT_SUBVECTOR ; with DemandedElts already as wide as the source vector. -define <3 x i32> @quux() #0 { +define <3 x i32> @quux() { ; CHECK-LABEL: quux: ; CHECK: ; %bb.0: ; %bb ; CHECK-NEXT: s_waitcnt vmcnt(0) expcnt(0) lgkmcnt(0) @@ -26,5 +26,3 @@ bb: %tmp10 = lshr <3 x i32> %tmp9, <i32 1, i32 1, i32 1> ret <3 x i32> %tmp10 } - -attributes #0 = { noinline optnone } |