diff options
| author | Sanjay Patel <spatel@rotateright.com> | 2016-02-01 17:46:18 +0000 |
|---|---|---|
| committer | Sanjay Patel <spatel@rotateright.com> | 2016-02-01 17:46:18 +0000 |
| commit | cf57c5a4eefeb36ce6fc64c9b68b235006d53962 (patch) | |
| tree | 7c96188706a687bbbbb892c9bd124a4722ae6164 | |
| parent | 31b382eaa4d1c104c546076e5a55f71c08aa86a0 (diff) | |
| download | bcm5719-llvm-cf57c5a4eefeb36ce6fc64c9b68b235006d53962.tar.gz bcm5719-llvm-cf57c5a4eefeb36ce6fc64c9b68b235006d53962.zip | |
fix broken check lines
Without the colon, it doesn't mean anything!
llvm-svn: 259377
| -rw-r--r-- | llvm/test/Transforms/InstCombine/masked_intrinsics.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/InstCombine/masked_intrinsics.ll b/llvm/test/Transforms/InstCombine/masked_intrinsics.ll index 30e98b8f746..3289e3d7744 100644 --- a/llvm/test/Transforms/InstCombine/masked_intrinsics.ll +++ b/llvm/test/Transforms/InstCombine/masked_intrinsics.ll @@ -8,7 +8,7 @@ define <2 x double> @load_zeromask(<2 x double>* %ptr, <2 x double> %passthru) ret <2 x double> %res ; CHECK-LABEL: @load_zeromask( -; CHECK-NEXT ret <2 x double> %passthru +; CHECK-NEXT: ret <2 x double> %passthru } define <2 x double> @load_onemask(<2 x double>* %ptr, <2 x double> %passthru) { @@ -17,6 +17,6 @@ define <2 x double> @load_onemask(<2 x double>* %ptr, <2 x double> %passthru) { ; CHECK-LABEL: @load_onemask( ; CHECK-NEXT: %unmaskedload = load <2 x double>, <2 x double>* %ptr, align 2 -; CHECK-NEXT ret <2 x double> %res +; CHECK-NEXT: ret <2 x double> %unmaskedload } |

