brintos

brintos / llvm-project-archived public Read only

0
0
Text · 255 B · 1b75340 Raw
10 lines · c
1// REQUIRES: x86-registered-target2 3// RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-obj %s -o %t.o -as-secure-log-file %t.log4// RUN: FileCheck %s -input-file %t.log5// CHECK: "foobar"6 7void test(void) {8  __asm__(".secure_log_unique \"foobar\"");9}10