diff options
author | Leonard Chan <leonardchan@google.com> | 2018-06-02 03:27:13 +0000 |
---|---|---|
committer | Leonard Chan <leonardchan@google.com> | 2018-06-02 03:27:13 +0000 |
commit | 0d485dbb40b151ae20e6a8133d46a12c9fddd1fe (patch) | |
tree | 15ec55bb97a84f42ea7b4775f2ef1082db49830e /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | db55d8331e631e84b07e6fbad923085b4baa9597 (diff) | |
download | bcm5719-llvm-0d485dbb40b151ae20e6a8133d46a12c9fddd1fe.tar.gz bcm5719-llvm-0d485dbb40b151ae20e6a8133d46a12c9fddd1fe.zip |
Revert "This diff includes changes for supporting the following types."
This reverts commit r333814, which fails for a test checking the bit
width on ubuntu.
llvm-svn: 333815
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 46f8c9f235f..b5396dd758f 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -2333,11 +2333,6 @@ static void ParseLangArgs(LangOptions &Opts, ArgList &Args, InputKind IK, Opts.ObjCExceptions = Args.hasArg(OPT_fobjc_exceptions); Opts.CXXExceptions = Args.hasArg(OPT_fcxx_exceptions); - // -ffixed-point - Opts.FixedPoint = - Args.hasFlag(OPT_ffixed_point, OPT_fno_fixed_point, /*Default=*/false) && - !Opts.CPlusPlus; - // Handle exception personalities Arg *A = Args.getLastArg(options::OPT_fsjlj_exceptions, options::OPT_fseh_exceptions, |