xref: /llvm-project/clang/test/CodeGen/as-secure-log-file.c (revision fd35e1506011fca925661312315b14f169a2e82a)
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 
test(void)7 void test(void) {
8   __asm__(".secure_log_unique \"foobar\"");
9 }
10