-// RUN: %clang_cc1 -triple powerpc-apple-darwin -emit-llvm -o - %s| FileCheck %s
+// RUN: %clang_cc1 -triple powerpc-apple-darwin -emit-llvm -o - %s| FileCheck -check-prefix=DARWINPPC-CHECK %s
int boolsize = sizeof(_Bool);
-//CHECK: boolsize = global i32 4, align 4
+//DARWINPPC-CHECK: boolsize = global i32 4, align 4
-// RUN: %clang_cc1 -triple powerpc-unknown-freebsd -emit-llvm -o - %s| FileCheck %s
+// RUN: %clang_cc1 -triple powerpc-unknown-freebsd -emit-llvm -o - %s| FileCheck -check-prefix=SVR4-CHECK %s
#include <stdarg.h>
int va_list_size = sizeof(va_list);
-// CHECK: va_list_size = global i32 12, align 4
+// SVR4-CHECK: va_list_size = global i32 12, align 4