1 // RUN: %clang_cc1 -triple mips-linux-gnu -emit-llvm -o - %s | FileCheck %s
3 void __attribute__((micromips
)) foo (void) {}
5 // CHECK: define{{.*}} void @foo() [[MICROMIPS:#[0-9]+]]
7 void __attribute__((nomicromips
)) nofoo (void) {}
9 // CHECK: define{{.*}} void @nofoo() [[NOMICROMIPS:#[0-9]+]]
11 // CHECK: attributes [[MICROMIPS]] = { noinline nounwind {{.*}} "micromips" {{.*}} }
12 // CHECK: attributes [[NOMICROMIPS]] = { noinline nounwind {{.*}} "nomicromips" {{.*}} }