When checking msan.module_ctor, use CHECK-LABEL instead of CHECK
[oota-llvm.git] / test / Instrumentation / MemorySanitizer / check_access_address.ll
index 566022600ea428e65bffb48e52e1b53c388bac03..5e1a3f4442f2286af911a5976953dd15027dc228 100644 (file)
@@ -8,7 +8,7 @@ target triple = "x86_64-unknown-linux-gnu"
 
 define <2 x i64> @ByValArgumentShadowLargeAlignment(<2 x i64>* byval %p) sanitize_memory {
 entry:
-  %x = load <2 x i64>* %p
+  %x = load <2 x i64>, <2 x i64>* %p
   ret <2 x i64> %x
 }
 
@@ -19,7 +19,7 @@ entry:
 
 define i16 @ByValArgumentShadowSmallAlignment(i16* byval %p) sanitize_memory {
 entry:
-  %x = load i16* %p
+  %x = load i16, i16* %p
   ret i16 %x
 }