summaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/nousejumptable.c
blob: 40ba0e2f7fb0fa021c8021721ebf9c3251867373 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -fno-jump-tables %s -emit-llvm -o - | FileCheck %s

// CHECK-LABEL: main
// CHECK: attributes #0 = {{.*}}"no-jump-tables"="true"{{.*}}

int main(void) {
  return 0;
}