brintos

brintos / llvm-project-archived public Read only

0
0
Text · 283 B · b5ce5f7 Raw
14 lines · cpp
1// RUN: %clangxx %s -o %t -fexperimental-sanitize-metadata=all && %t | FileCheck %s2 3// Test that the compiler emits weak declarations to the callbacks, which are4// not called if they do not exist.5 6#include <stdio.h>7 8int main() {9  printf("main\n");10  return 0;11}12 13// CHECK: main14