diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-03-13 22:29:26 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-03-13 22:29:26 +0000 |
commit | 7c527e4f535faaee682f4c20ebf955dffd717163 (patch) | |
tree | 910c99ac144301d4de57e14498db602df6bf2416 | |
parent | 4159f05999914fc1d342131f64c1c37f00059288 (diff) |
Attempt to fix test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176987 91177308-0d34-0410-b5e6-96231b3b80d8
-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" {{.*}} } |