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

Side by Side Diff: test/Transforms/NaCl/pnacl-abi-internalize-symbols.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 _start.
5
6
7 @global_var = global [4 x i8] c"abcd"
8 ; CHECK: @global_var = internal global [4 x i8] c"abcd"
9
10
11 define void @main() {
12 ; CHECK: define internal void @main
13 ret void
14 }
15
16 define external void @foobarbaz() {
17 ; CHECK: define internal void @foobarbaz
18 ret void
19 }
20
21 define void @_start() {
22 ; CHECK: define void @_start
23 ret void
24 }
25
OLDNEW
« no previous file with comments | « test/Transforms/NaCl/lit.local.cfg ('k') | test/Transforms/NaCl/pnacl-abi-internalize-symbols-pso.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698