草庐IT

llvm-clang

全部标签

c++ - 在模板参数的方法中添加类型转换时出现 clang 错误

我有一个模板结构,它将方法的类型和指向方法的指针作为参数,并将其包装在类似C的函数中:templatestructproxy;templatestructproxy{staticRcall(T&obj,Args&&...args){return(obj.*mf)(std::forward(args)...);}};proxy结构在简单的场景中按预期工作,例如:structFoo{intfoo(intx){returnx+1;}};...Foof;proxy::call(f,10);问题是当我在可能展开到的宏中使用代理时:proxy::call(f,10);在clang中,错误是:err

c++ - 最小程序在 g++ 上产生 Valgrind 警告,但在 clang 或 VS 上不产生警告

我一直在疯狂地追踪一个中型项目中的内存错误。我将一个代码最小化为以下代码,并验证这会导致Valgrind在注释行号处发出无效读取警告。我正在为项目使用g++4.8.2(Debian4.8.2-16),使用-std=c++11-O0进行编译。g++4.7.0也会产生错误,4.4.6在稍作修改的版本(删除C++11)上也会产生错误。clang++不会导致错误,VS2013也不会。我的问题是:我是否在不知不觉中从事未定义的行为?这是Valgrind误报吗?如果是,我如何才能让自己放心,以后会遇到这样的情况?这段代码相当脆弱——特别是,让foo通过引用获取坐标可以消除这个问题,为Coord选择

c++ - 对于 CLang 中的 enable_if 错误(错误 11723)是否有更好的解决方法?

理想情况下,我们可以使用enable_if做类似的事情:#includenamespacedetail{enumclassenabler_t{DUMMY};}templateusingenable_if_u=typenamestd::enable_if::type;templateusingdisable_if_u=typenamestd::enable_if::type;template::value>...>inta(){return0;}template::value>...>doublea(){return0.0;}intmain(){autox=a();}恕我直言,这是最好的

c++ - CMake "clang++ is not able compile a simple test program"(软呢帽 20)

所以我尝试安装clang+cmake来编译一个简单的C++程序,但出现以下错误:--TheCcompileridentificationisGNU4.8.3--TheCXXcompileridentificationisClang3.5.0--CheckforworkingCcompiler:/usr/bin/cc--CheckforworkingCcompiler:/usr/bin/cc--works--DetectingCcompilerABIinfo--DetectingCcompilerABIinfo-done--CheckforworkingCXXcompiler:/usr/

c++ - Clang UBSAN 报告类型 'std::_Ios_Fmtflags' 的无效值

以下代码用clangUBSAN编译会崩溃#include#include#include#includetemplateinlinestd::stringfloatToString(Ti){printf("infloatToString\n");std::stringstreamss;ss.precision(6);ss用Clang3.6编译:$>clang++-3.6-fsanitize=undefined-fno-sanitize=float-divide-by-zero,vptr,function-fno-sanitize-recover-otesttest.cpp然后程序崩溃了

c++ - clang 和 gcc 在处理模板生成和静态 constexpr 成员时的不同行为?

考虑以下程序(抱歉太长了;这是我能想到的表达问题的最短方式):#include#include#includeusingnamespacestd;std::vector&test_vector(){staticstd::vectorrv;returnrv;}templateclassRegistrarWrapper;templateclassRegistrar{Registrar(){auto&test_vect=test_vector();test_vect.push_back(std::type_index(typeid(T)));}friendclassRegistrarWrap

c++ - 什么是 clang-check 的垃圾值

我收到以下警告:test.cpp:14:25:warning:Therightoperandof'/'isagarbagevaluereturn(std::abs(a)/size)>10;^~~~~对于这段代码:#include#include#include#includeusingnamespacestd;doublepitchDetect(conststd::vector>&dft,unsignedintsamplingRate)noexcept{if(dft.empty())return0.0;autoit=find_if(begin(dft),end(dft),[size=d

c++ - 如何根据 LLVM 中 LoadInst 的结果解析 AllocaInst?

从概念上讲,我想做的事情非常简单。我正在使用AllocatechniquedescribedintheKaleidoscopeexample与mem2reg配对以减少手动创建Phi节点的需要。我已经实现了我的自定义语言的几个方面,但是我遇到了以通用方式实现后递增/递减的问题。我的AST节点PostIncrDecrNode包含一个标记来表示++或--和一个表达式AST节点,该节点被代码生成以返回一个llvm::Value*很像Kaleidoscope的例子。我已经注意到我可能需要返回llvm::Value*以外的东西,因为我的语言是非常类型安全的,我需要知道诸如整数类型的符号性之类的东西

c++ - 使用 clang 对 std::atomic 函数的调用不明确

我正在尝试使用clang编译我的代码,我之前使用的是g++。我在编译以下代码时遇到错误:#includetypedefvoid(*my_func)();intmain(intargc,char**argv){std::atomic_func;_func();return0;}错误是:a.cpp:23:3:error:calltoobjectoftype'std::atomic'isambiguous_func();^~~~~/usr/bin/../lib/gcc/x86_64-linux-gnu/4.8/../../../../include/c++/4.8/atomic:304:7:

c++ - 变量 args SFINAE 默认构造函数在 clang 中工作,但在 Visual Studio 2015 中失败

任何人都知道这段代码是否不好,或者VS是否有错误,或者Clang是否允许?我认为我的构造函数不应该接受任何参数并通过enable_if检查-但VS在某处说“不”。VisualStudio2015Update2出现以下错误:source_file.cpp(##):errorC2512:'Foo::Foo':noappropriatedefaultconstructoravailable现场直播:http://rextester.com/VWAI2954VS存在错误:http://rextester.com/PTDSS2853#include#includeusingnamespacest