repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
as-secure-log-file.c
blob
1b753407d4cd3bdc5ba3ed517d7da8ae6ac02604
1
// REQUIRES: x86-registered-target
2
3
// RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-obj %s -o %t.o -as-secure-log-file %t.log
4
// RUN: FileCheck %s -input-file %t.log
5
// CHECK: "foobar"
6
7
void
test
(
void
) {
8
__asm__
(
".secure_log_unique
\"
foobar
\"
"
);
9
}