summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeGen')
-rw-r--r--clang/test/CodeGen/global-init.c9
-rw-r--r--clang/test/CodeGen/init.c6
2 files changed, 3 insertions, 12 deletions
diff --git a/clang/test/CodeGen/global-init.c b/clang/test/CodeGen/global-init.c
index e28992f1186..651f7d809a0 100644
--- a/clang/test/CodeGen/global-init.c
+++ b/clang/test/CodeGen/global-init.c
@@ -31,15 +31,6 @@ struct ManyFields {
struct ManyFields FewInits = {1, 2};
-// PR6766
-// CHECK: @l = global %1 { [24 x i8] c"f\00\00\00o\00\00\00o\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00", i32 1 }
-typedef __WCHAR_TYPE__ wchar_t;
-struct K {
- wchar_t L[6];
- int M;
-} l = { { L"foo" }, 1 };
-
-
// NOTE: tentative definitions are processed at the end of the translation unit.
// This shouldn't be emitted as common because it has an explicit section.
diff --git a/clang/test/CodeGen/init.c b/clang/test/CodeGen/init.c
index d48e723c58a..13ffad17313 100644
--- a/clang/test/CodeGen/init.c
+++ b/clang/test/CodeGen/init.c
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm %s -o - | FileCheck %s
+// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm %s -o %t
void f1() {
// Scalars in braces.
@@ -22,8 +22,8 @@ void f3() {
}
// Constants
-// CHECK: @g3 = constant i32 10
-// CHECK: @f4.g4 = internal constant i32 12
+// RUN: grep '@g3 = constant i32 10' %t
+// RUN: grep '@f4.g4 = internal constant i32 12' %t
const int g3 = 10;
int f4() {
static const int g4 = 12;
OpenPOWER on IntegriCloud