internal-protected-function.ll 187 B

1234567
  1. ; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
  2. define internal protected void @function() {
  3. ; CHECK: symbol with local linkage must have default visibility
  4. entry:
  5. ret void
  6. }