1 // RUN: %clang_cc1 -fno-jump-tables %s -emit-llvm -o - | FileCheck %s 2 3 // CHECK-LABEL: main 4 // CHECK: attributes #0 = {{.*}}"no-jump-tables"="true"{{.*}} 5 main(void)6 int main(void) { 7 return 0; 8 } 9