Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: test/Transforms/MinSFI/strip-tls.ll

Issue 939073008: Rebased PNaCl localmods in LLVM to 223109 (Closed)
Patch Set: undo localmod Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 ; RUN: opt %s -minsfi-strip-tls -S | FileCheck %s
2
3 target datalayout = "p:32:32:32"
4 target triple = "le32-unknown-nacl"
5
6 @internal_shared = internal global i32 111
7 @internal_thread_local = internal thread_local global i32 222
8
9 @external_shared = external global i64
10 @external_thread_local = external thread_local global i64
11
12 @other_attr = thread_local addrspace(5) constant float 1.000000e+00,
13 section "foo", align 4
14 @tls_model = thread_local(initialexec) global i32 555
15
16 ; CHECK: @internal_shared = internal global i32 111
17 ; CHECK: @internal_thread_local = internal global i32 222
18
19 ; CHECK: @external_shared = external global i64
20 ; CHECK: @external_thread_local = external global i64
21
22 ; CHECK: @other_attr = addrspace(5) constant float 1.000000e+00, section "foo", align 4
23 ; CHECK: @tls_model = global i32 555
OLDNEW
« no previous file with comments | « test/Transforms/MinSFI/sandbox-memory-accesses-unhandled-intrinsic.ll ('k') | test/Transforms/MinSFI/substitute-undefs.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698