diff options
author | Devang Patel <dpatel@apple.com> | 2009-06-05 22:05:48 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-06-05 22:05:48 +0000 |
commit | acebb397fa5d63835a0de9cee144987057ec1333 (patch) | |
tree | 8de93c8e9c80f14b60424545e85f8990c550378a /include/clang/Frontend/CompileOptions.h | |
parent | 496b5a894c5ec5425de53909f5aac3fb4771a2ec (diff) |
Set function Attribute::NoImplicitFloat appropriately.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72961 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/CompileOptions.h')
-rw-r--r-- | include/clang/Frontend/CompileOptions.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/Frontend/CompileOptions.h b/include/clang/Frontend/CompileOptions.h index a69f8f8a40..75dec00f74 100644 --- a/include/clang/Frontend/CompileOptions.h +++ b/include/clang/Frontend/CompileOptions.h @@ -42,6 +42,7 @@ public: unsigned TimePasses : 1; /// Set when -ftime-report is enabled. unsigned NoCommon : 1; /// Set when -fno-common or C++ is enabled. unsigned DisableRedZone : 1; /// Set when -mno-red-zone is enabled. + unsigned NoImplicitFloat : 1; /// Set when -mno-implicit-float is enabled. /// Inlining - The kind of inlining to perform. InliningMethod Inlining; @@ -65,6 +66,7 @@ public: NoCommon = 0; Inlining = NoInlining; DisableRedZone = 0; + NoImplicitFloat = 0; } }; |