Fix Incorrect CHECK message [0-31]+ in test case.
authorKevin Qin <Kevin.Qin@arm.com>
Thu, 12 Dec 2013 02:19:13 +0000 (02:19 +0000)
committerKevin Qin <Kevin.Qin@arm.com>
Thu, 12 Dec 2013 02:19:13 +0000 (02:19 +0000)
commit24802f3f82bade50b686efb368cfb01a8bb0264f
tree5db475e58849e377cfaf61e7b44a0f717702a804
parent41a300757171e208a1367d423feca80db0f40364
Fix Incorrect CHECK message [0-31]+ in test case.
In regular expression, [0-31]+ equals to [0-3]+, not the number from
0 to 31. So change it to [0-9]+.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197113 91177308-0d34-0410-b5e6-96231b3b80d8
16 files changed:
test/CodeGen/AArch64/neon-add-sub.ll
test/CodeGen/AArch64/neon-bitwise-instructions.ll
test/CodeGen/AArch64/neon-copy.ll
test/CodeGen/AArch64/neon-fma.ll
test/CodeGen/AArch64/neon-mla-mls.ll
test/CodeGen/AArch64/neon-mov.ll
test/CodeGen/AArch64/neon-mul-div.ll
test/CodeGen/AArch64/neon-scalar-add-sub.ll
test/CodeGen/AArch64/neon-scalar-by-elem-fma.ll
test/CodeGen/AArch64/neon-scalar-by-elem-mul.ll
test/CodeGen/AArch64/neon-scalar-copy.ll
test/CodeGen/AArch64/neon-scalar-rounding-shift.ll
test/CodeGen/AArch64/neon-scalar-saturating-add-sub.ll
test/CodeGen/AArch64/neon-scalar-saturating-rounding-shift.ll
test/CodeGen/AArch64/neon-scalar-saturating-shift.ll
test/CodeGen/AArch64/neon-scalar-shift.ll