diff options
-rw-r--r-- | test/CodeGen/mips16-attr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/mips16-attr.c b/test/CodeGen/mips16-attr.c index 326ee7bdd5..2560fb40dd 100644 --- a/test/CodeGen/mips16-attr.c +++ b/test/CodeGen/mips16-attr.c @@ -11,7 +11,7 @@ void __attribute__((nomips16)) nofoo (void) { // CHECK: define void @nofoo() [[NOMIPS16:#[0-9]+]] -// CHECK: attributes [[MIPS16]] = { nounwind "fp-contract-model"="standard" "mips16" {{.*}} } +// CHECK: attributes [[MIPS16]] = { nounwind "mips16" {{.*}} } -// CHECK: attributes [[NOMIPS16]] = { nounwind "fp-contract-model"="standard" "nomips16" {{.*}} } +// CHECK: attributes [[NOMIPS16]] = { nounwind "nomips16" {{.*}} } |