Le 20/02/2019 à 09:19, Dun Hum a écrit :
Would you have a testcase which shows the issue? This to make sure we
don't regress again
in the future.
The simplest test case is the following one, it only checks that the enum value 
exist and has the correct
name.

```
#include <llvm/ADT/Triple.h>

int main()
{
     (void)llvm::Triple::KFreeBSD;
     return 0;
}
```

Compile with `g++ $(llvm-config --cflags) test.cpp` and make sure `$?` is zero.

Thanks but I was more thinking about ABI compatibility testing. :)

S

Reply via email to