fix broken check lines

Without the colon, it doesn't mean anything!

llvm-svn: 259377
This commit is contained in:
Sanjay Patel 2016-02-01 17:46:18 +00:00
parent 31b382eaa4
commit cf57c5a4ee
1 changed files with 2 additions and 2 deletions

View File

@ -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
}