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

Side by Side Diff: test/Transforms/MinSFI/abi-verifier-whitelist-syscalls.ll

Issue 939073008: Rebased PNaCl localmods in LLVM to 223109 (Closed)
Patch Set: undo localmod Created 5 years, 9 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 -verify-pnaclabi-module -pnaclabi-allow-minsfi-syscalls -S \
2 ; RUN: | FileCheck -check-prefix=CHECK-WITHFLAG %s
3 ; RUN: not opt %s -verify-pnaclabi-module -S 2>&1 \
4 ; RUN: | FileCheck -check-prefix=CHECK-NOFLAG %s
5
6 target datalayout = "p:32:32:32"
7 target triple = "le32-unknown-nacl"
8
9 define i32 @_start(i32 %args) {
10 ret i32 0
11 }
12
13 declare i32 @__minsfi_syscall_dummy(i32)
14
15 ; CHECK-NOFLAG: __minsfi_syscall_dummy is declared but not defined
16 ; CHECK-NOFLAG: __minsfi_syscall_dummy is not a valid external symbol
17
18 ; CHECK-WITHFLAG: declare i32 @__minsfi_syscall_dummy(i32)
OLDNEW
« no previous file with comments | « test/Transforms/InstCombine/overflow-mul.ll ('k') | test/Transforms/MinSFI/abi-verifier-whitelist-syscalls-global.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698