internal-hidden-function.ll 184 B

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