1; RUN: llc < %s -mtriple=x86_64-pc-linux -function-sections -unique-section-names=false | FileCheck %s 2 3; CHECK: .section .text,"ax",@progbits,unique 4; CHECK-NOT: section 5; CHECK: f: 6define void @f() { 7 ret void 8} 9 10; CHECK: .section .text,"ax",@progbits,unique 11; CHECK-NOT: section 12; CHECK: g: 13define void @g() { 14 ret void 15} 16