[cfe-commits] r39383 - /cfe/cfe/trunk/include/clang/Basic/TargetInfo.h
clattner at cs.uiuc.edu
clattner at cs.uiuc.edu
Wed Jul 11 09:43:49 PDT 2007
Author: clattner
Date: Wed Jul 11 11:43:49 2007
New Revision: 39383
URL: http://llvm.org/viewvc/llvm-project?rev=39383&view=rev
Log:
Stub out a method.
Modified:
cfe/cfe/trunk/include/clang/Basic/TargetInfo.h
Modified: cfe/cfe/trunk/include/clang/Basic/TargetInfo.h
URL: http://llvm.org/viewvc/llvm-project/cfe/cfe/trunk/include/clang/Basic/TargetInfo.h?rev=39383&r1=39382&r2=39383&view=diff
==============================================================================
--- cfe/cfe/trunk/include/clang/Basic/TargetInfo.h (original)
+++ cfe/cfe/trunk/include/clang/Basic/TargetInfo.h Wed Jul 11 11:43:49 2007
@@ -103,6 +103,13 @@
return WCharWidth;
}
+ /// getIntMaxTWidth - Return the size of intmax_t and uintmax_t for this
+ /// target, in bits.
+ unsigned getIntMaxTWidth(SourceLocation Loc) {
+ // FIXME: implement correctly.
+ return 64;
+ }
+
/// getTargetBuiltins - Return information about target-specific builtins for
/// the current primary target, and info about which builtins are non-portable
/// across the current set of primary and secondary targets.
More information about the cfe-commits
mailing list