From: Eric Christopher Date: Thu, 2 Dec 2010 02:30:43 +0000 (+0000) Subject: FileCheckize. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7b3982b40665e995ea62ca1b03923cbcc2391c14;p=clang FileCheckize. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120648 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/thread-specifier.c b/test/CodeGen/thread-specifier.c index a16103f08f..a1f3e16800 100644 --- a/test/CodeGen/thread-specifier.c +++ b/test/CodeGen/thread-specifier.c @@ -1,11 +1,15 @@ -// RUN: %clang_cc1 -triple i686-pc-linux-gnu -emit-llvm -o - %s | grep thread_local | count 4 -// RUN: %clang_cc1 -triple i686-pc-linux-gnu -emit-llvm -o - %s | not grep common +// RUN: %clang_cc1 -triple i686-pc-linux-gnu -emit-llvm -o - %s | FileCheck %s +// CHECK: @b = external thread_local global +// CHECK: @d.e = internal thread_local global +// CHECK: @d.f = internal thread_local global +// CHECK: @a = thread_local global __thread int a; extern __thread int b; -int c() { return &b; } +int c() { return *&b; } int d() { __thread static int e; __thread static union {float a; int b;} f = {.b = 1}; + return 0; }