diff options
author | Edward O'Callaghan <eocallaghan@auroraux.org> | 2009-08-05 04:02:56 +0000 |
---|---|---|
committer | Edward O'Callaghan <eocallaghan@auroraux.org> | 2009-08-05 04:02:56 +0000 |
commit | 2bf62728b8ce00e295c7bf0fb328427496cc85aa (patch) | |
tree | 4387ffcd063b8111e471f320fe1c1c437063c272 /lib/ffsti2.c | |
parent | 0e4ad9c55a8554a220af3dc6b0fc4b0a5d64c025 (diff) | |
download | compiler-rt-2bf62728b8ce00e295c7bf0fb328427496cc85aa.tar.gz |
Fixup C++ style comments are not allowed in ISO C90 to classic C style.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@78152 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ffsti2.c')
-rw-r--r-- | lib/ffsti2.c | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/lib/ffsti2.c b/lib/ffsti2.c index 194c2cbb4..2ee1a8bd2 100644 --- a/lib/ffsti2.c +++ b/lib/ffsti2.c @@ -1,22 +1,24 @@ -//===-- ffsti2.c - Implement __ffsti2 -------------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file implements __ffsti2 for the compiler_rt library. -// -//===----------------------------------------------------------------------===// +/* ===-- ffsti2.c - Implement __ffsti2 -------------------------------------=== + * + * The LLVM Compiler Infrastructure + * + * This file is distributed under the University of Illinois Open Source + * License. See LICENSE.TXT for details. + * + * ===----------------------------------------------------------------------=== + * + * This file implements __ffsti2 for the compiler_rt library. + * + * ===----------------------------------------------------------------------=== + */ #if __x86_64 #include "int_lib.h" -// Returns: the index of the least significant 1-bit in a, or -// the value zero if a is zero. The least significant bit is index one. +/* Returns: the index of the least significant 1-bit in a, or + * the value zero if a is zero. The least significant bit is index one. + */ si_int __ffsti2(ti_int a) |