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

Side by Side Diff: test/Transforms/NaCl/pnacl-abi-internalize-symbols-pso.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 -pnacl-abi-simplify-preopt -S | FileCheck %s
2
3 ; Checks that PNaCl ABI pre-opt simplification correctly internalizes
4 ; symbols except __pnacl_pso_root.
5
6
7 @__pnacl_pso_root = global i32 123
8 ; CHECK: @__pnacl_pso_root = global i32 123
9
10 @global_var = global [4 x i8] c"abcd"
11 ; CHECK: @global_var = internal global [4 x i8] c"abcd"
12
13
14 define void @main() {
15 ; CHECK: define internal void @main
16 ret void
17 }
18
19 define external void @foobarbaz() {
20 ; CHECK: define internal void @foobarbaz
21 ret void
22 }
OLDNEW
« no previous file with comments | « test/Transforms/NaCl/pnacl-abi-internalize-symbols.ll ('k') | test/Transforms/NaCl/pnacl-abi-simplify.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698